@charset "UTF-8";
@font-face {
  font-family: "mvboli";
  src: url("../../website-font/mvboli.eot");
  src: url("../../website-font/mvboli.eot?#iefix") format("embedded-opentype"), url("../../website-font/mvboli.woff") format("woff"), url("../../website-font/mvboli.ttf") format("truetype"), url("../../website-font/mvboli.svg") format("svg"); }
@font-face {
  font-family: "futura-md-bt-medium";
  src: url("../../website-font/futura-md-bt-medium.eot");
  src: url("../../website-font/futura-md-bt-medium.eot?#iefix") format("embedded-opentype"), url("../../website-font/futura-md-bt-medium.woff") format("woff"), url("../../website-font/futura-md-bt-medium.ttf") format("truetype"), url("../../website-font/futura-md-bt-medium.svg") format("svg"); }
@font-face {
  font-family: "futura-md-bt-bold";
  src: url("../../website-font/futura-md-bt-bold.eot");
  src: url("../../website-font/futura-md-bt-bold.eot?#iefix") format("embedded-opentype"), url("../../website-font/futura-md-bt-bold.woff") format("woff"), url("../../website-font/futura-md-bt-bold.ttf") format("truetype"), url("../../website-font/futura-md-bt-bold.svg") format("svg"); }
@font-face {
  font-family: "Futura-Bk-BT-Book";
  src: url("../../website-font/Futura-Bk-BT-Book.eot");
  src: url("../../website-font/Futura-Bk-BT-Book?#iefix") format("embedded-opentype"), url("../../website-font/Futura-Bk-BT-Book.woff") format("woff"), url("../../website-font/Futura-Bk-BT-Book.ttf") format("truetype"), url("../../website-font/Futura-Bk-BT-Book.svg") format("svg"); }
@font-face {
  font-family: "calibri";
  src: url("../../website-font/calibri.eot");
  src: url("../../website-font/calibri?#iefix") format("embedded-opentype"), url("../../website-font/calibri.woff") format("woff"), url("../../website-font/calibri.ttf") format("truetype"), url("../../website-font/calibri.svg") format("svg"); }
html {
  scroll-behavior: smooth; }

html,
body {
  margin: 0px !important;
  padding: 0;
  font-family: "Futura-Bk-BT-Book", sans-serif;
  background: url(../../images/content-bg.png) repeat center 0; }

a[href^="tel"] {
  color: inherit;
  /* Keeps the text color the same as surrounding text */
  text-decoration: none;
  /* Removes the default underline */ }

.container-full {
  max-width: 100%;
  padding: 0; }

.overflow-h {
  overflow: hidden; }

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
div,
p,
form {
  margin: 0;
  padding: 0; }

* {
  margin: 0;
  padding: 0; }

* {
  outline: none !important; }

a:focus {
  outline: 0; }

.clr {
  clear: both; }

.cursor-p {
  cursor: pointer; }

.only-desktop {
  display: block !important; }

.only-tab {
  display: none !important; }

.only-mobile {
  display: none !important; }

.displayhide {
  display: none; }

.break {
  clear: both;
  line-height: 1px;
  display: block; }

.bdrnone {
  border: 0px !important; }

.wd100 {
  width: 100%; }

.hding {
  font-size: 30px;
  color: #5b616b;
  padding: 0 0 20px 0; }

/****** smooth scrolling page start ****/
.smart-scroll {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out; }

.scrolled-up {
  transform: translateY(0);
  transition: all 0.3s ease-in-out; }

/****** smooth scrolling page end ****/
/******************************************** Responsive CSS Starts ********************************************/
@media screen and (max-width: 1024px) {
  .only-tab {
    display: block !important; } }
@media screen and (max-width: 768px) {
  .not-mobile {
    display: block; }

  .only-mobile {
    display: block; }

  .only-tab {
    display: block !important; } }
@media screen and (max-width: 640px) {
  .only-desktop {
    display: none !important; }

  .only-tab {
    display: none !important; }

  .only-mobile {
    display: block !important; }

  .not-mobile {
    display: none; }

  .mobile-none {
    display: none; } }
/******************************************** Responsive CSS Ends ********************************************/
/******************************************** Header Css Start ********************************************/
.header-logo {
  width: 225px;
  image-rendering: -webkit-optimize-contrast;
  margin: 0 130px 0 0; }

.navbg {
  padding: 15px 15px 0 15px !important;
  background-color: #505965 !important;
  box-shadow: none; }

.nav-item a {
  color: #fff;
  padding: 10px;
  font-size: 15px; }
.nav-item a.active {
  color: #eac05a;
  text-decoration: none;
  text-shadow: 0px 0px 15px #fff; }
.nav-item a.active:hover {
  cursor: default;
  color: #eac05a; }

/* ── Dropdown base ── */
.nav-item .dropdown-menu {
  padding: 0;
  border-radius: 0;
  margin: 0;
  box-shadow: 3px 3px 0px #8c929d;
  top: 70px;
  /* animation: hidden state */
  display: block !important;
  /* override Bootstrap display:none so transitions fire */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scaleY(0.95);
  transform-origin: top center;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.22s; }

/* animation: visible state */
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s; }

/* Staggered item slide-in */
.dropdown-menu li {
  margin-left: 0px !important;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease; }

.nav-item:hover .dropdown-menu li,
.nav-item:focus-within .dropdown-menu li {
  opacity: 1;
  transform: translateX(0); }

.nav-item:hover .dropdown-menu li:nth-child(1) {
  transition-delay: 0.05s; }

.nav-item:hover .dropdown-menu li:nth-child(2) {
  transition-delay: 0.09s; }

.nav-item:hover .dropdown-menu li:nth-child(3) {
  transition-delay: 0.13s; }

.nav-item:hover .dropdown-menu li:nth-child(4) {
  transition-delay: 0.17s; }

/* Dropdown item links */
.dropdown-menu li a {
  display: block;
  padding: 5px 30px 0px 30px !important;
  height: 70px !important;
  background: #fff !important;
  color: #505965 !important;
  font-size: 16px !important;
  text-align: center !important;
  border-bottom: solid 1px #505965 !important;
  width: 300px !important;
  line-height: 70px;
  transition: background 0.15s, color 0.15s, padding-left 0.2s; }

.dropdown-menu li a:hover {
  color: #fa9b27 !important;
  background: #f5f5f5 !important;
  text-decoration: none; }

.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff !important;
  text-decoration: none;
  background-color: #eac05a !important; }

.dropdown-menu .nav-item {
  padding: 0; }

.dropdown-menu .sub-menu {
  left: 100%;
  position: absolute;
  top: 0;
  visibility: hidden;
  margin-top: -1px; }

.dropdown-menu li:hover .sub-menu {
  visibility: visible; }

.dropdown-toggle {
  white-space: normal; }

/* Dropdown arrow rotation */
.dropdown-toggle::after {
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1); }

.nav-item:hover > a.dropdown-toggle::after {
  transform: rotate(180deg); }

/* ── Tab-style menu ── */
.header {
  background: #5f656b;
  padding: 10px 20px 0;
  display: flex;
  align-items: center; }

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  margin-right: 20px; }

.logo img {
  height: 40px;
  margin-right: 10px; }

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0; }

.menu li {
  position: relative;
  margin-left: -66px; }

.menu li:first-child {
  margin-left: 0; }

.menu li a {
  display: block;
  padding: 20px 30px 0px 30px;
  height: 70px;
  display: table-cell;
  vertical-align: middle;
  text-decoration: none;
  font-family: "calibri";
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  color: #333;
  width: 218px;
  text-align: center;
  background: url("../../images/tab-1.png") no-repeat 0;
  background-size: cover;
  transition: transform 0.3s ease-in-out; }

.menu li.wide a {
  padding: 18px 50px; }

.menu li.home a {
  background: url("../../images/tab-1.png") no-repeat 0;
  background-size: cover; }

.menu li.purpose a {
  background: url("../../images/tab-2.png") no-repeat 0;
  background-size: cover; }

.menu li.products a {
  background: url("../../images/tab-3.png") no-repeat 0;
  background-size: cover; }

.menu li.offerings a {
  background: url("../../images/tab-4.png") no-repeat 0;
  background-size: cover; }

.menu li.professional a {
  background: url("../../images/tab-5.png") no-repeat 0;
  background-size: cover; }

.menu li.insights a {
  background: url("../../images/tab-6.png") no-repeat 0;
  background-size: cover; }

.menu li.connect a {
  background: url("../../images/tab-7.png") no-repeat 0;
  background-size: cover; }

.menu li.home {
  z-index: 6; }

.menu li.purpose {
  z-index: 5; }

.menu li.products {
  z-index: 4; }

.menu li.offerings {
  z-index: 3; }

.menu li.professional {
  z-index: 2;
  width: 215px; }

.menu li.insights {
  z-index: 1; }

.menu li.connect {
  z-index: 0; }

.menu li.active {
  z-index: 7; }

.home-bar {
  width: 100%;
  background-color: #faf3c3;
  padding: 10px 20px;
  font-family: "futura-md-bt-medium";
  font-size: 18px;
  margin-top: 85px; }

/* Submenu */
.dropdown-submenu {
  position: relative; }

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0; }

.dropdown-submenu:hover > .dropdown-menu {
  display: block; }

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: 0px; }

.dropdown-submenu:hover > a:after {
  border-left-color: #ffffff; }

.dropdown-submenu .pull-left {
  float: none; }

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  border-radius: 6px 0 6px 6px; }

/* slideInUp animation */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

@keyframes slideInUp {
  0% {
    transform: translateY(30%);
    visibility: visible; }
  100% {
    transform: translateY(0); } }
.footer-sub-link {
  margin-left: 15px; }

/****************************************** Responsive CSS Starts *****************************************/
@media screen and (max-width: 640px) {
  .footer-sub-link {
    margin-left: 0px; }

  .header-logo {
    width: 170px; }

  .navbg {
    padding: 10px 15px !important;
    flex-direction: row; }

  .menu {
    padding: 10px 0 0 0;
    background: transparent;
    flex-direction: column; }

  .menu li {
    margin: 0;
    border-bottom: solid 1px #333; }

  .menu li a {
    background: none !important;
    background-color: #faf3c3 !important;
    width: 100%;
    display: block;
    height: auto;
    border-radius: 0;
    padding: 15px; }

  .menu li.home a {
    background: #faf3c3 !important; }

  .menu li.purpose a {
    background: #fde69f !important; }

  .menu li.products a {
    background: #ffd18c !important; }

  .menu li.offerings a {
    background: #fdc167 !important; }

  .menu li.professional a {
    background: #ffb544 !important; }

  .menu li.insights a {
    background: #fa9b27 !important; }

  .menu li.connect a {
    background: #f28211 !important; }

  .menu li.professional {
    width: 100%; }

  .home-bar {
    margin-top: 60px; }

  .nav-item {
    padding: 0; }

  .nav-item a {
    display: block;
    padding: 10px; }

  .nav-item a:hover {
    background: #eac05a;
    color: #fff; }

  .nav-item .dropdown-menu {
    display: none !important; }

  .dropdown-menu li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important; }

  .navbar-toggler {
    font-size: 24px;
    padding: 0;
    color: #fff; }

  .dropdown-toggle::after {
    display: none; } }
@media (max-width: 900px) {
  .menu {
    flex-direction: column; }

  .dropdown-menu li a {
    width: 100% !important;
    display: block !important;
    height: auto !important;
    border-radius: 0;
    padding: 15px !important; } }
/******************************************** Header Css End ********************************************/
/******************************************** Footer Css Start ********************************************/
.footer-section {
  margin: 0px 100px; }

.footer-block {
  background: #fff;
  padding: 30px 50px;
  border-bottom: 5px solid #b89535; }
  .footer-block h6 {
    font-size: 20px;
    font-weight: 600; }
  .footer-block p {
    font-size: 14px; }
    .footer-block p a {
      color: #000; }
      .footer-block p a:hover {
        text-decoration: underlne; }

.subscriber-blk {
  border: 1px solid #ccc;
  border-radius: 50px;
  margin: 8px 100px 0 0;
  padding: 5px; }
  .subscriber-blk .sub-text {
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
    border-radius: 20px 0 0 20px;
    border: 0;
    margin: 0 5px 0 0; }
  .subscriber-blk .sub-btn {
    background: #000;
    color: #fff;
    border-radius: 25px;
    border: 0;
    padding: 10px 20px;
    font-weight: 600; }
    .subscriber-blk .sub-btn:hover {
      background: #3e3e3e;
      cursor: pointer; }

.social-lnk {
  padding: 0; }
  .social-lnk p {
    padding: 0 0 5px 0;
    font-weight: 600;
    font-size: 13px; }
  .social-lnk a {
    display: block;
    width: 40px;
    height: 40px;
    background: #b89535;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    margin: 0 0 0 10px; }
    .social-lnk a:hover {
      box-shadow: 0 0 10px #888; }
  .social-lnk .footer-sub-link {
    margin-left: 20px; }

/******************************************** Responsive CSS Starts ********************************************/
@media only screen and (max-width: 991px) and (min-width: 360px) {
  .social-lnk {
    padding: 20px 0 0 0;
    margin: 30px 0 0 0;
    border-top: 1px solid #ccc; }
    .social-lnk a {
      line-height: 45px; }

  .footer-sub-link {
    margin-left: 0px; } }
@media screen and (max-width: 640px) {
  .footer-block {
    text-align: center;
    padding: 30px; }
    .footer-block .footer-lnk {
      padding-bottom: 30px; }

  .subscriber-blk {
    margin: 0; }
    .subscriber-blk .sub-text {
      font-size: 13px;
      padding: 5px 10px; }
    .subscriber-blk .sub-btn {
      padding: 7px 10px;
      font-size: 13px; }

  .social-lnk {
    padding: 20px 0 0 0;
    margin: 30px 0 0 0;
    border-top: 1px solid #ccc; } }
@media screen and (max-width: 360px) {
  .subscriber-blk {
    margin: 20px 0; }
    .subscriber-blk .sub-text {
      font-size: 13px;
      padding: 5px 10px; }
    .subscriber-blk .sub-btn {
      padding: 7px 15px;
      font-size: 13px; }

  .social-lnk {
    padding: 0;
    margin: 0;
    border-top: 0px; } }
/******************************************** Responsive CSS Ends ********************************************/
/******************************************** Footer Css End ********************************************/
/******************************************** Home page Css Start ********************************************/
html {
  scroll-behavior: smooth; }

.main-banner {
  width: 100%;
  overflow: hidden;
  padding: 50px 100px 0 100px; }

.main-banner-inner {
  margin-bottom: 15px; }

/* Titles */
.main-title {
  font-family: "Futura-Bk-BT-Book";
  font-size: 42px;
  color: #373736; }

/* Section */
.middle-banner {
  position: relative;
  padding: 100px 0 100px 0;
  background: url(../../images/middle-banner.png) no-repeat center 0;
  background-size: cover; }

/* Decorative icons */
.spiral {
  position: absolute;
  left: 40px;
  top: 120px;
  width: 80px;
  opacity: 0.5; }

.book {
  position: absolute;
  right: 40px;
  bottom: 120px;
  width: 80px;
  opacity: 0.5; }

/* Card */
.middle-banner-service-card {
  text-align: center; }

/* Clickable link */
.middle-banner-service-link {
  text-decoration: none;
  color: inherit;
  display: inline-block; }

/* Icon */
.middle-banner-service-link img {
  max-width: 200px;
  transition: 0.3s ease; }

/* Hover */
.middle-banner-service-link:hover img {
  transform: scale(1.1); }

/* Title */
.middle-banner-service-title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500; }

.sub-title {
  background: url(../../images/alone-behind-graphic.png) no-repeat bottom 0px right 285px;
  padding-bottom: 20px;
  font-family: "MVBoli";
  font-size: 42px;
  margin-top: 10px;
  color: #373736; }

/* Icons */
.icon {
  position: absolute; }

.left-icon {
  left: 0;
  top: 0;
  width: 200px;
  padding-top: 35px;
  animation: float 4s ease-in-out infinite; }

.right-icon {
  right: 0;
  top: 0;
  width: 100px;
  padding-top: 25px;
  animation: float 4s ease-in-out infinite; }

/* Left Box */
.approach-box {
  background: url(../../images/approach-box.png) no-repeat center 0;
  background-size: contain;
  padding: 80px 35px 35px 35px; }

.approach-box h4 {
  font-family: "MVBoli";
  font-size: 20px;
  margin-bottom: 15px; }

.approach-box ul {
  padding-left: 20px;
  margin: 0; }

.approach-box li {
  margin-bottom: 4px;
  font-family: "MVBoli";
  font-size: 20px;
  white-space: nowrap; }

/* Text */
.text-content {
  padding-top: 40px;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 36px;
  color: #444; }

.text-content p {
  margin-bottom: 30px; }

.highlight-r {
  color: #dd2a1b;
  font-weight: bold; }

.highlight-y {
  color: #fbc200;
  font-weight: bold; }

.curriculum-section {
  padding: 50px 100px 0 100px; }

.curriculum-section .students-img {
  transform: rotate(-350deg);
  width: 100%; }

/* Heading */
.main-heading {
  font-family: "Futura-Bk-BT-Book";
  font-size: 44px;
  font-weight: 600;
  color: #373736;
  line-height: 1.2; }

.typing-text {
  font-family: "Futura-Bk-BT-Book";
  font-size: 32px;
  color: #ff7a00;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  min-height: 100px;
  min-width: 700px;
  margin-top: 30px; }

.typing-text.visible {
  opacity: 1;
  transform: translateY(0); }

.cursor {
  display: inline-block;
  margin-left: 3px;
  animation: blink 0.7s infinite; }

@keyframes blink {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/* Orange circle around "context?" */
.highlight-circle {
  position: relative;
  display: inline-block;
  color: #373736; }

.highlight-circle::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 5px;
  width: 122%;
  height: 92%;
  background: url(../../images/circle.png) no-repeat bottom 0px right 0px;
  background-size: contain; }

/* Sub Text */
.sub-text {
  font-family: "Futura-Bk-BT-Book";
  font-size: 32px;
  color: #f28211; }

.text-orange {
  color: #f28211; }

/* Button */
.explore-btn {
  font-family: "Futura-Bk-BT-Book";
  background: #fff;
  color: #333;
  padding: 5px 25px;
  border: solid 1px #ccc;
  border-radius: 30px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 0 #ccc;
  transition: 0.3s; }

.explore-btn:hover {
  text-decoration: none;
  transform: translateY(-2px); }

.arrow {
  background: #fff;
  border: 2px solid #f28211;
  border-radius: 50%;
  padding: 6px 8px;
  color: #f28211; }

/* Image Styling */
.image-box {
  display: inline-block;
  background: #fff;
  padding: 15px;
  transform: rotate(10deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }

.image-box img {
  display: block;
  transform: rotate(-5deg); }

.audit-section {
  padding: 50px 100px 0 100px; }

.audit-section .school-img {
  transform: rotate(350deg);
  width: 100%; }

/* Orange underline stroke */
.underline {
  position: relative;
  display: inline-block; }

.underline::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 5px;
  width: 100%;
  height: 100%;
  background: url(../../images/underline.png) no-repeat bottom 0px right 0px;
  background-size: contain; }

.teachers-section {
  padding: 50px 100px 50px 100px; }

.teachers-section .teachers-img {
  transform: rotate(-350deg);
  width: 100%; }

/* Small script text */
.top-script {
  color: #f28211;
  font-family: "MVBoli";
  font-size: 28px;
  text-align: center;
  margin-left: 340px;
  transform: rotate(-8deg); }

/* Brush highlight */
.highlight-brush {
  position: relative;
  display: inline-block;
  color: #444;
  z-index: 1; }

.highlight-brush::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 10px;
  width: 100%;
  height: 80%;
  background: url(../../images/teachers-behind-graphic.png) no-repeat bottom 0px right 0px;
  background-size: contain;
  z-index: -1;
  border-radius: 20px;
  transform: rotate(-2deg); }

.stats-section {
  padding: 150px 100px 200px 100px;
  background: url(../../images/stats-bg.png) no-repeat center 0;
  background-size: cover; }

.stat-number {
  font-family: "futura-md-bt-bold";
  color: #f28211;
  font-size: 50px; }

.stat-text {
  font-family: "Futura-Bk-BT-Book";
  color: #373736;
  font-size: 20px;
  line-height: 1.4; }

.counter {
  font-size: 64px;
  font-weight: 700;
  color: #f57c00; }

.stats-section p {
  font-size: 18px;
  color: #333;
  margin-top: 10px; }

.team-section {
  padding: 0px 100px; }

.section-title {
  text-align: center;
  color: #373736;
  font-size: 45px;
  margin: 50px 0;
  letter-spacing: 2px;
  font-family: "Futura-Bk-BT-Book";
  text-shadow: 2px 2px 0 #ffa625; }

.section-title-after {
  right: 360px;
  top: -60px;
  width: 12%;
  animation-iteration-count: infinite; }

.section-title-before {
  left: 500px;
  top: -5px;
  width: 30px;
  animation-iteration-count: infinite; }

.footer-logo {
  max-width: 240px;
  margin-bottom: 20px; }

.footer-top {
  background: #fff;
  padding: 40px 0;
  position: relative;
  box-shadow: 0 0px 20px -1px #b2b2b2; }

.footer-bottom {
  background: #5a5f66;
  color: #fff;
  padding: 20px 0; }

.footer-bottom h5 {
  font-family: "Futura-Bk-BT-Book"; }

.footer-bottom .social-icons i {
  font-size: 20px;
  margin: 0 4px;
  background: #fff;
  color: #5a5f66;
  padding: 10px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center; }

.social-icons a {
  color: #333;
  font-size: 20px;
  transition: all 0.3s ease;
  display: inline-block; }

.social-icons a:hover {
  color: #f58220;
  transform: translateY(-3px); }

.quick-links h5 {
  font-family: "Futura-Bk-BT-Book";
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 22px;
  color: #373736; }

.quick-links a {
  font-family: "Futura-Bk-BT-Book";
  font-weight: 600;
  display: block;
  color: #373736;
  text-decoration: none;
  margin-bottom: 5px;
  font-size: 18px;
  transition: color 0.3s ease; }

.quick-links a:hover {
  text-decoration: none;
  color: #f28211; }

.contact-info p {
  font-family: "Futura-Bk-BT-Book";
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #373736; }

.contact-info a {
  color: #373736; }

.contact-info i {
  margin-right: 10px; }

/* Top Center Circle Button */
.scroll-top {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #6c757d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); }

.scroll-top:hover {
  background: #495057; }

.divider-line {
  height: 5px;
  background: orange; }

.bottom-heading-section {
  padding: 0px 30px 50px 30px; }

/* SECTION */
.bottom-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; }

/* TEXT */
.bottom-heading-text {
  font-family: "Futura-Bk-BT-Book";
  font-size: 30px;
  font-weight: 600;
  color: #333;
  letter-spacing: 1px; }

/* ARROW IMAGE */
.bottom-arrow-img {
  width: 60px;
  /* adjust based on your png */
  margin-left: 10px; }

@keyframes float {
  0%,
  100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-12px); } }
.mb-30 {
  margin-bottom: -50px; }

/******************************************** Responsive CSS Starts ********************************************/
@media screen and (max-width: 640px) {
  .mb-30 {
    margin-bottom: 0px; }

  .footer-bottom .social-icons i {
    font-size: 18px;
    width: 32px;
    height: 32px;
    padding: 7px 5px; }

  .contact-info i {
    margin-right: 0px; }

  .main-banner {
    padding: 30px 30px 0 30px; }

  .main-banner-inner {
    margin: 70px 0 30px 0; }

  .home-bar {
    display: none; }

  .approach-box {
    background-size: cover;
    padding-top: 90px; }

  .approach-box h4 {
    margin-bottom: 10px; }

  .approach-box ul {
    margin-left: 0px; }

  .approach-box li {
    font-size: 18px; }

  .left-icon {
    display: none; }

  .right-icon {
    display: none; }

  .main-title {
    font-size: 32px; }

  .sub-title {
    background: url(../../images/alone-behind-graphic.png) no-repeat bottom 0px left 120px;
    font-size: 34px; }

  .text-content {
    padding-top: 20px; }

  .text-content p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 10px; }

  .middle-banner {
    margin-top: -50px; }

  .middle-banner-service-link img {
    max-width: 180px; }

  .header-logo {
    margin-right: 0px; }

  .spiral {
    display: none; }

  .book {
    display: none; }

  .curriculum-section {
    padding: 0px 30px 0 30px; }

  .curriculum-section .students-img {
    transform: rotate(0deg);
    width: 100%; }

  .audit-section {
    padding: 30px 30px 0 30px; }

  .audit-section .school-img {
    transform: rotate(0deg);
    width: 100%;
    margin-top: 30px; }

  .teachers-section {
    padding: 0px 30px 0 30px; }

  .teachers-section .teachers-img {
    transform: rotate(0deg);
    width: 100%; }

  .top-script {
    margin-left: 0px;
    font-size: 22px;
    margin-bottom: 10px;
    display: none; }

  .main-heading {
    font-size: 28px;
    margin-top: 10px; }

  .typing-text {
    font-size: 24px;
    min-height: 100px;
    min-width: 200px;
    margin-top: 30px; }

  .explore-btn {
    font-size: 16px;
    margin: 0 auto; }

  .stats-section {
    padding: 100px 30px 130px 30px;
    background: url(../../images/stats-bg-mobile.png) repeat center 0;
    background-size: cover; }

  .stat-number {
    font-size: 34px; }

  .stat-text {
    font-size: 18px; }

  .team-section {
    padding: 0px 30px 0 30px;
    margin-top: -60px; }

  .section-title {
    font-size: 28px; }

  .section-title-after {
    display: none; }

  .section-title-before {
    left: 20px;
    top: -15px;
    width: 30px; }

  .footer-section {
    margin: 0px 30px; }

  .footer-logo {
    width: 180px;
    margin-bottom: 10px; }

  .contact-info p {
    font-size: 14px; }

  .quick-links h5 {
    font-size: 18px;
    margin-top: 10px; }

  .quick-links a {
    font-size: 14px; }

  .bottom-heading-section {
    padding: 0px 30px 60px 30px; }

  .bottom-heading-text {
    font-size: 20px;
    text-align: center; }

  .bottom-heading-wrapper {
    flex-direction: column; }

  .bottom-arrow-img {
    margin-top: 10px; } }
/******************************************** Responsive CSS Ends ********************************************/
/******************************************** Home page Css End ********************************************/
#modal-container {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 1; }

#modal-container.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.one .modal-background .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.one.out .modal-background .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.two {
  transform: scale(1); }

#modal-container.two .modal-background {
  background: rgba(0, 0, 0, 0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.two .modal-background .modal {
  opacity: 0;
  animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.two + .content {
  animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.two.out {
  animation: quickScaleDown 0s 0.5s linear forwards; }

#modal-container.two.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.two.out .modal-background .modal {
  animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.two.out + .content {
  animation: scaleForward 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.three {
  z-index: 0;
  transform: scale(1); }

#modal-container.three .modal-background {
  background: rgba(0, 0, 0, 0.6); }

#modal-container.three .modal-background .modal {
  animation: moveUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.three + .content {
  z-index: 1;
  animation: slideUpLarge 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.three.out .modal-background .modal {
  animation: moveDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.three.out + .content {
  animation: slideDownLarge 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.four {
  z-index: 0;
  transform: scale(1); }

#modal-container.four .modal-background {
  background: rgba(0, 0, 0, 0.7); }

#modal-container.four .modal-background .modal {
  animation: blowUpModal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.four + .content {
  z-index: 1;
  animation: blowUpContent 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.four.out .modal-background .modal {
  animation: blowUpModalTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.four.out + .content {
  animation: blowUpContentTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.five {
  transform: scale(1); }

#modal-container.five .modal-background {
  background: rgba(0, 0, 0, 0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.five .modal-background .modal {
  transform: translateX(-1500px);
  animation: roadRunnerIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.five.out {
  animation: quickScaleDown 0s 0.5s linear forwards; }

#modal-container.five.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.five.out .modal-background .modal {
  animation: roadRunnerOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.six {
  transform: scale(1); }

#modal-container.six .modal-background {
  background: rgba(0, 0, 0, 0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.six .modal-background .modal {
  background-color: transparent;
  animation: modalFadeIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.six .modal-background .modal h2, #modal-container.six .modal-background .modal p {
  opacity: 0;
  position: relative;
  animation: modalContentFadeIn 0.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.six .modal-background .modal .modal-svg rect {
  animation: sketchIn 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.six.out {
  animation: quickScaleDown 0s 0.5s linear forwards; }

#modal-container.six.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.six.out .modal-background .modal {
  animation: modalFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.six.out .modal-background .modal h2, #modal-container.six.out .modal-background .modal p {
  animation: modalContentFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.six.out .modal-background .modal .modal-svg rect {
  animation: sketchOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.seven {
  transform: scale(1); }

#modal-container.seven .modal-background {
  background: rgba(0, 0, 0, 0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.seven .modal-background .modal {
  height: 75px;
  width: 75px;
  border-radius: 75px;
  overflow: hidden;
  animation: bondJamesBond 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.seven .modal-background .modal h2, #modal-container.seven .modal-background .modal p {
  opacity: 0;
  position: relative;
  animation: modalContentFadeIn 0.5s 1.4s linear forwards; }

#modal-container.seven.out {
  animation: slowFade 0.5s 1.5s linear forwards; }

#modal-container.seven.out .modal-background {
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeToRed 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.seven.out .modal-background .modal {
  border-radius: 3px;
  height: 162px;
  width: 227px;
  animation: killShot 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container.seven.out .modal-background .modal h2, #modal-container.seven.out .modal-background .modal p {
  animation: modalContentFadeOut 0.5s 0.5 cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

#modal-container .modal-background {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle; }

#modal-container .modal-background .modal {
  background: white;
  padding: 50px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 300;
  position: relative; }

#modal-container .modal-background .modal h2 {
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 15px; }

#modal-container .modal-background .modal p {
  font-size: 18px;
  line-height: 22px; }

#modal-container .modal-background .modal .modal-svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px; }

#modal-container .modal-background .modal .modal-svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 778;
  stroke-dashoffset: 778; }

.content {
  min-height: 100%;
  height: 100%;
  background: white;
  position: relative;
  z-index: 0; }

.content h1 {
  padding: 75px 0 30px 0;
  text-align: center;
  font-size: 30px;
  line-height: 30px; }

.content .buttons {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  text-align: center; }

.content .buttons .button {
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
  margin: 10px;
  background: red;
  font-size: 18px;
  background-color: #efefef;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer; }

.content .buttons .button:hover {
  color: white;
  background: #009bd5; }

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0); }
  50% {
    transform: scaleY(0.005) scaleX(1); }
  100% {
    transform: scaleY(1) scaleX(1); } }
@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1); }
  50% {
    transform: scaleY(0.005) scaleX(1); }
  100% {
    transform: scaleY(0.005) scaleX(0); } }
@keyframes zoomIn {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }
@keyframes zoomOut {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0); } }
@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0); }
  100% {
    background: rgba(0, 0, 0, 0.7); } }
@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7); }
  100% {
    background: rgba(0, 0, 0, 0); } }
@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0; }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1; } }
@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1; }
  100% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0; } }
@keyframes scaleBack {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0.85); } }
@keyframes scaleForward {
  0% {
    transform: scale(0.85); }
  100% {
    transform: scale(1); } }
@keyframes quickScaleDown {
  0% {
    transform: scale(1); }
  99.9% {
    transform: scale(1); }
  100% {
    transform: scale(0); } }
@keyframes slideUpLarge {
  0% {
    transform: translateY(0%); }
  100% {
    transform: translateY(-100%); } }
@keyframes slideDownLarge {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0%); } }
@keyframes moveUp {
  0% {
    transform: translateY(150px); }
  100% {
    transform: translateY(0); } }
@keyframes moveDown {
  0% {
    transform: translateY(0px); }
  100% {
    transform: translateY(150px); } }
@keyframes blowUpContent {
  0% {
    transform: scale(1);
    opacity: 1; }
  99.9% {
    transform: scale(2);
    opacity: 0; }
  100% {
    transform: scale(0); } }
@keyframes blowUpContentTwo {
  0% {
    transform: scale(2);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
@keyframes blowUpModal {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }
@keyframes blowUpModalTwo {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(0);
    opacity: 0; } }
@keyframes roadRunnerIn {
  0% {
    transform: translateX(-1500px) skewX(30deg) scaleX(1.3); }
  70% {
    transform: translateX(30px) skewX(0deg) scaleX(0.9); }
  100% {
    transform: translateX(0px) skewX(0deg) scaleX(1); } }
@keyframes roadRunnerOut {
  0% {
    transform: translateX(0px) skewX(0deg) scaleX(1); }
  30% {
    transform: translateX(-30px) skewX(-5deg) scaleX(0.9); }
  100% {
    transform: translateX(1500px) skewX(30deg) scaleX(1.3); } }
@keyframes sketchIn {
  0% {
    stroke-dashoffset: 778; }
  100% {
    stroke-dashoffset: 0; } }
@keyframes sketchOut {
  0% {
    stroke-dashoffset: 0; }
  100% {
    stroke-dashoffset: 778; } }
@keyframes modalFadeIn {
  0% {
    background-color: transparent; }
  100% {
    background-color: white; } }
@keyframes modalFadeOut {
  0% {
    background-color: white; }
  100% {
    background-color: transparent; } }
@keyframes modalContentFadeIn {
  0% {
    opacity: 0;
    top: -20px; }
  100% {
    opacity: 1;
    top: 0; } }
@keyframes modalContentFadeOut {
  0% {
    opacity: 1;
    top: 0px; }
  100% {
    opacity: 0;
    top: -20px; } }
@keyframes bondJamesBond {
  0% {
    transform: translateX(1000px); }
  80% {
    transform: translateX(0px);
    border-radius: 75px;
    height: 75px;
    width: 75px; }
  90% {
    border-radius: 3px;
    height: 182px;
    width: 247px; }
  100% {
    border-radius: 3px;
    height: 162px;
    width: 227px; } }
@keyframes killShot {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1; }
  100% {
    transform: translateY(300px) rotate(45deg);
    opacity: 0; } }
@keyframes fadeToRed {
  0% {
    background-color: rgba(0, 0, 0, 0.6); }
  100% {
    background-color: rgba(255, 0, 0, 0.8); } }
@keyframes slowFade {
  0% {
    opacity: 1; }
  99.9% {
    opacity: 0;
    transform: scale(1); }
  100% {
    transform: scale(0); } }
.purpose-bar {
  width: 100%;
  background-color: #fde69f;
  padding: 10px 20px;
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  margin-top: 85px; }

/* FULL WIDTH WITH SIDE SPACING */
.vision-section {
  padding: 100px 100px 50px 100px;
  /* <-- 100px left & right */
  position: relative; }

/* FLEX WRAPPER */
.vision-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; }

/* LEFT BOX */
.vision-box {
  background: #fff;
  border: 3px dashed #5b616b;
  padding: 40px 30px;
  z-index: 2;
  position: relative;
  top: -135px;
  width: 110%; }

.vision-box2 {
  height: 400px;
  background: #5b616b url(../../images/vision.png) no-repeat center 0;
  background-size: cover; }

.vision-box2 h2 {
  font-family: "Futura-Bk-BT-Book";
  color: #f28211;
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 20px; }

.vision-box2 p {
  font-family: "Futura-Bk-BT-Book";
  font-size: 25px;
  line-height: 1.8;
  color: #373736; }

.vision-box h2 {
  font-family: "Futura-Bk-BT-Book";
  color: #f28211;
  font-weight: 600;
  font-size: 38px;
  margin-bottom: 20px; }

.vision-box p {
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 38px;
  color: #373736; }

.mission-box {
  background: #fff;
  border: 3px dashed #5b616b;
  padding: 40px 30px;
  z-index: 2;
  position: relative;
  right: 62px;
  width: 110%;
  top: -45px; }

.mission-box2 {
  height: 400px;
  background: #5b616b url("../../images/mission.png") no-repeat center 0;
  background-size: cover;
  top: -85px;
  position: relative; }

.mission-box2 h2 {
  font-family: "Futura-Bk-BT-Book";
  color: #f28211;
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 20px; }

.mission-box2 p {
  font-family: "Futura-Bk-BT-Book";
  font-size: 25px;
  line-height: 1.8;
  color: #373736; }

.mission-box h2 {
  font-family: "Futura-Bk-BT-Book";
  color: #f28211;
  font-weight: 600;
  font-size: 38px;
  margin-bottom: 20px; }

.mission-box p {
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 38px;
  color: #373736; }

/* RIGHT IMAGE */
.vision-image {
  margin-left: -120px;
  /* overlap */ }

.vision-image img {
  width: 700px;
  height: auto;
  position: relative;
  top: 43px; }

/* HANDWRITTEN NOTE */
.vision-note {
  height: 0px; }

.vision-note-typing {
  font-family: "MVBoli";
  color: #f28211;
  font-size: 24px;
  position: relative;
  top: 55px;
  left: 60px;
  transform: rotate(-4deg);
  transform: translateY(20px);
  transition: all 0.6s ease;
  min-height: 100px;
  min-width: 700px;
  margin-top: 30px; }

.vision-note-typing.visible {
  opacity: 1;
  transform: translateY(0); }

.vision-note-typing::before {
  content: "";
  position: absolute;
  left: -74px;
  top: -45px;
  width: 60px;
  height: 60px;
  background: url(../../images/vision-arrow.png) no-repeat bottom 0px right 0px;
  background-size: contain; }

/* DECOR ICON */
.vision-decor {
  padding-top: 20px;
  text-align: right;
  animation-iteration-count: infinite; }

.mission-decor {
  margin-top: -60px;
  text-align: left;
  animation-iteration-count: infinite; }

.vision-decor img {
  width: 100px; }

.mission-decor img {
  width: 100px; }

.faq {
  padding: 0 100px 0px 100px; }

.faq .faq-list {
  padding: 0;
  list-style: none; }

.faq .faq-list li {
  background-color: #fafae5;
  margin-bottom: 20px;
  box-shadow: 0px 15px 10px -15px #b2b2b2; }

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 20px;
  color: #373736;
  font-family: "futura-md-bt-medium";
  text-decoration: none; }

.faq .faq-list i {
  font-size: 26px;
  position: absolute;
  right: 20px;
  transition: 1s;
  transform: rotate(45deg); }

.faq-heading {
  background-color: #faf3c3;
  padding: 20px; }

.faq-title {
  font-family: "futura-md-bt-medium";
  color: #f28211;
  font-weight: 600;
  font-size: 38px;
  padding-bottom: 30px; }

.faq-title h2 {
  font-size: 32px; }

.faq .faq-list p {
  font-size: 18px;
  font-family: "futura-md-bt-medium";
  padding: 20px; }

.collapsed i.fa.fa-plus {
  transform: rotate(90deg); }

.hub-box2 {
  position: relative;
  /* right: 260px; */
  top: 210px;
  z-index: 5;
  margin-top: 120px; }

.hub-section {
  padding: 100px 100px 0px 100px; }

.hub-box {
  background: #fff;
  border: 3px dashed #5b616b;
  padding: 40px 30px;
  z-index: 2;
  position: relative;
  top: -260px;
  width: 175%;
  margin-top: 45px; }

.hub-box h2 {
  font-family: "Futura-Bk-BT-Book";
  color: #32ad86;
  font-weight: 600;
  font-size: 38px;
  margin-bottom: 20px; }

.hub-box p {
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 38px;
  color: #373736; }

.hub-decor {
  padding-top: 20px;
  text-align: right;
  animation-iteration-count: infinite;
  position: relative;
  top: -540px;
  right: 30px; }

.hub-decor img {
  width: 100px; }

.hub-ap-logo {
  position: absolute;
  left: -650px;
  bottom: 393px;
  padding-top: 20px;
  text-align: right; }

.hub-ap-logo img {
  width: 350px; }

.explore-section {
  padding: 0px 100px 100px 100px; }

/* Button */
.explore-now-btn {
  font-family: "Futura-Bk-BT-Book";
  background: #fff;
  color: #333;
  padding: 5px 25px;
  border: solid 1px #ccc;
  border-radius: 30px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 0 #ccc;
  transition: 0.3s;
  margin-top: 30px;
  margin-right: 30px; }

.explore-now-btn:hover {
  text-decoration: none;
  transform: translateY(-2px); }

.explore-arrow {
  background: #fff;
  border: 2px solid #f28211;
  border-radius: 50%;
  padding: 6px 8px;
  color: #f28211; }

/* RESPONSIVE */
@media screen and (max-width: 640px) {
  .vision-box {
    top: 0px;
    width: 100%;
    margin-bottom: 70px;
    padding: 30px; }

  .vision-box h2 {
    font-size: 32px; }

  .vision-box p {
    font-size: 18px;
    line-height: 32px; }

  .vision-note-typing {
    font-size: 18px;
    min-width: 200px;
    left: 30px;
    top: 35px; }

  .vision-note-typing::before {
    left: -50px;
    top: -45px;
    width: 40px; }

  .vision-decor img {
    width: 65px;
    position: absolute;
    top: -160px;
    right: 25px;
    z-index: 2; }

  .mission-box {
    top: 0px;
    right: 0px;
    width: 100%;
    margin-bottom: 70px; }

  .mission-box h2 {
    font-size: 32px; }

  .mission-box p {
    font-size: 18px;
    line-height: 32px; }

  .mission-box2 {
    top: -25px; }

  .mission-decor img {
    width: 50px;
    position: absolute;
    top: -135px;
    right: 25px;
    z-index: 11111; }

  .hub-box {
    top: 0px;
    width: 100%;
    margin-bottom: 30px; }

  .hub-box h2 {
    font-size: 32px; }

  .hub-box p {
    font-size: 18px;
    line-height: 32px; }

  .hub-box2 {
    width: 100%;
    right: 0;
    top: 0;
    height: 220px; }

  .hub-ap-logo {
    position: relative;
    left: 0px;
    bottom: 0px;
    padding-top: 0px;
    text-align: center;
    margin-bottom: 40px; }

  .hub-decor {
    display: none; }

  .hub-decor img {
    width: 50px; }

  .hub-ap-logo img {
    width: 250px; }

  .faq .faq-list a {
    font-size: 16px; }

  .faq-heading {
    padding: 15px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px; }

  .faq-heading i {
    flex-shrink: 0;
    /* prevents icon from shrinking */ }

  .faq .faq-list p {
    font-size: 16px;
    padding: 15px; }

  .faq .faq-list i {
    font-size: 16px;
    right: 10px; }

  .explore-section {
    padding: 0px 30px 50px 30px; }

  .explore-now-btn {
    margin-top: 20px;
    margin-bottom: 0px;
    margin-right: 0px;
    font-size: 13px;
    line-height: 24px;
    gap: 0px;
    padding: 5px 15px; }

  .purpose-bar {
    margin-top: 67px;
    font-size: 18px; }

  .explore-arrow {
    margin-left: 10px; } }
@media (max-width: 992px) {
  .vision-section {
    padding: 30px 20px; }

  .hub-section {
    padding: 50px 20px 30px; }

  .faq {
    padding: 0px 20px; }

  .vision-wrapper {
    flex-direction: column; }

  .vision-image {
    margin-left: 0;
    margin-top: 30px; } }
.products-bar {
  width: 100%;
  background-color: #ffd18c;
  padding: 10px 20px;
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  margin-top: 85px; }

/* FULL WIDTH WITH SIDE SPACING */
.products-section {
  padding: 50px 100px 80px 100px;
  /* <-- 100px left & right */
  position: relative; }

/* ICON IMAGES */
.icon-pen {
  position: absolute;
  top: 35%;
  left: 3%;
  width: 50px; }

.icon-puzzle {
  position: absolute;
  bottom: 30px;
  right: 40px;
  width: 110px; }

/* Top buttons */
.top-buttons .btn {
  border-radius: 30px;
  background: #ffefd6;
  color: #333;
  margin: 0 15px;
  padding: 8px 30px;
  border: 1px solid #ffd18c;
  transition: all 0.3s ease;
  font-family: "Futura-Bk-BT-Book";
  font-size: 20px;
  width: 370px; }

.top-buttons .btn:hover {
  background: #ffd18c;
  color: #000;
  transform: translateY(-2px); }

.top-buttons .active-btn {
  background: #ffd18c; }

/* Description */
.description {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  padding: 30px 0; }

/* Boxes */
.info-box {
  background: url(../../images/info-box.png) no-repeat center 0;
  background-size: contain;
  padding: 40px 95px;
  margin: 15px 0;
  position: relative;
  text-align: center;
  font-family: "Futura-Bk-BT-Book";
  font-size: 20px;
  width: 420px; }

.number {
  position: absolute;
  top: 40px;
  left: 20px;
  background: url(../../images/circle-shape.png) no-repeat center 0;
  background-size: contain;
  line-height: 22px;
  font-weight: bold;
  padding: 26px;
  font-family: "MVBoli"; }

/* Center */
.center-box {
  text-align: center;
  margin: 40px 0; }

.center-box h3 {
  font-style: italic; }

.info-box-mobile-padding {
  padding-top: none; }

/* Responsive */
@media (max-width: 640px) {
  .icon-pen {
    display: none; }

  .icon-puzzle {
    display: none; }

  .products-bar {
    margin-top: 67px;
    font-size: 18px; }

  .top-buttons .btn {
    font-size: 16px;
    width: 280px; }

  .products-section {
    padding: 30px; }

  .description {
    font-size: 18px;
    line-height: 32px; }

  .info-box {
    width: 100%;
    padding: 20px 70px 20px 70px;
    font-size: 16px;
    border: solid 5px #333;
    border-radius: 20px;
    height: 140px;
    background: none;
    display: flex;
    align-items: center;
    /* Vertically centers children */
    justify-content: center;
    /* Optional: Horizontally centers children */ }

  .info-box-mobile-padding {
    padding-top: 30px; }

  .number {
    position: absolute;
    top: 40px;
    left: -25px;
    padding: 20px;
    line-height: 16px; }

  .center-box {
    margin: 0 0 20px 0; } }
/* FULL WIDTH WITH SIDE SPACING */
.preschools-section {
  padding: 50px 100px 50px 100px;
  /* <-- 100px left & right */
  position: relative; }

/* Top Title */
.preschools-main-title {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 40px;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 30px;
  display: inline-block;
  position: relative; }

.preschools-main-title::before {
  content: "";
  /* display: block; */
  position: absolute;
  width: 40%;
  height: 100%;
  background: url(../../images/preschool-heading.png) no-repeat 0;
  background-size: contain;
  margin-top: 6px; }

/* Paragraph */
.preschools-description {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  padding-bottom: 30px;
  line-height: 40px; }

/* Section Titles */
.preschools-section-title {
  font-family: "Futura-Bk-BT-Book";
  font-size: 30px;
  color: #f28211;
  font-weight: 600; }

/* Divider line */
.preschools-section-line {
  height: 3px;
  background: #ffdc7a;
  flex: 1;
  margin-left: 15px; }

.preschools-section-line-left {
  height: 3px;
  background: #ffdc7a;
  flex: 1;
  margin-right: 15px; }

/* Content text */
.preschools-content-text {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 40px;
  text-align: justify; }

/* Images */
.preschools-content-img img {
  width: 100%; }

/* Section spacing */
.preschools-section-space {
  margin-bottom: 30px; }

/* Icons */
.preschools-icon-pen {
  position: absolute;
  top: 400px;
  left: 20px;
  width: 42px; }

.preschools-icon-magnifier {
  position: absolute;
  top: 410px;
  left: 20px;
  width: 50px; }

.preschools-icon-puzzle {
  position: absolute;
  bottom: 10px;
  right: 30px;
  width: 100px; }

/* Section */
.preschools-cta-section {
  padding-bottom: 100px;
  text-align: center;
  position: relative; }

/* Star icon */
.preschools-star-icon {
  position: absolute;
  left: 360px;
  top: -60px;
  width: 60px; }

/* Heading */
.preschools-cta-title {
  font-family: "MVBoli";
  font-size: 36px;
  color: #373736;
  margin-bottom: 30px; }

.preschools-cta-title::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  background: url(../../images/star-icon.png) no-repeat 0;
  background-size: contain;
  top: -140px;
  margin-left: -40px; }

/* Button */
.preschools-cta-btn {
  background: #f28211;
  color: #fff;
  padding: 10px 40px;
  font-family: "futura-md-bt-medium";
  font-size: 18px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease; }

.preschools-cta-btn:hover {
  background: #e66a00;
  transform: translateY(-3px);
  text-decoration: none;
  color: #fff; }

/* Arrow circle */
.preschools-arrow-circle {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; }

/* Responsive */
@media (max-width: 768px) {
  .preschools-main-title {
    font-size: 24px; }

  .preschools-section-title {
    font-size: 20px; }

  .preschools-description,
  .preschools-content-text {
    font-size: 18px;
    line-height: 32px;
    text-align: left; }

  .preschools-icon-pen,
  .preschools-icon-puzzle {
    display: none; }

  .preschools-section-line {
    display: none; }

  .preschools-cta-title {
    font-size: 26px;
    margin-bottom: 30px;
    padding: 0 30px; }

  .preschools-cta-title::before {
    width: 30px;
    top: -120px;
    left: 75px; }

  .preschools-cta-btn {
    font-size: 14px;
    padding: 10px 20px;
    gap: 10px; }

  .preschools-arrow-circle {
    width: 35px;
    height: 35px;
    font-size: 16px; }

  .preschools-star-icon {
    width: 30px;
    left: 20px;
    top: -40px; }

  .preschools-section {
    padding: 30px; }

  .preschools-section-line-left {
    /* height: 3px; */
    /* background: #ffdc7a; */
    flex: 0;
    margin-right: 0px; }

  .preschools-icon-pen {
    top: 520px;
    left: 240px; }

  .preschools-icon-puzzle {
    display: none; }

  .preschools-icon-magnifier {
    display: none; }

  .preschools-cta-section {
    padding-bottom: 60px; } }
/* FULL WIDTH WITH SIDE SPACING */
.primay-middle-section {
  padding: 50px 100px 50px 100px;
  /* <-- 100px left & right */
  position: relative; }

/* Top Title */
.primay-middle-main-title {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 40px;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 30px;
  display: inline-block;
  position: relative; }

.primay-middle-main-title::before {
  content: "";
  /* display: block; */
  position: absolute;
  width: 58%;
  height: 100%;
  background: url(../../images/primary-middle-heading.png) no-repeat 0;
  background-size: contain;
  margin-top: 6px; }

/* Paragraph */
.primay-middle-description {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  padding-bottom: 30px;
  line-height: 40px; }

/* Section Titles */
.primay-middle-section-title {
  font-family: "Futura-Bk-BT-Book";
  font-size: 30px;
  color: #f28211;
  font-weight: 600; }

/* Divider line */
.primay-middle-section-line {
  height: 3px;
  background: #ffdc7a;
  flex: 1;
  margin-left: 15px; }

.primay-middle-section-line-left {
  height: 3px;
  background: #ffdc7a;
  flex: 1;
  margin-right: 15px; }

/* Content text */
.primay-middle-content-text {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 40px;
  text-align: justify; }

/* Images */
.primay-middle-content-img img {
  width: 100%; }

/* Section spacing */
.primay-middle-section-space {
  margin-bottom: 30px; }

/* Icons */
.primay-middle-icon-scissor {
  position: absolute;
  top: 330px;
  left: 20px;
  width: 100px; }

.primay-middle-icon-pen {
  position: absolute;
  top: 420px;
  left: 20px;
  width: 40px; }

.primay-middle-icon-puzzle {
  position: absolute;
  bottom: 0px;
  right: 30px;
  width: 100px; }

.primay-middle-icon-dice {
  position: absolute;
  bottom: 0px;
  right: 30px;
  width: 100px; }

.primay-middle-icon-callout {
  position: absolute;
  top: 350px;
  left: 20px;
  width: 80px; }

/* Section */
.primay-middle-cta-section {
  padding-bottom: 100px;
  text-align: center;
  position: relative; }

/* Star icon */
.primay-middle-star-icon {
  position: absolute;
  left: 450px;
  top: -60px;
  width: 60px; }

/* Heading */
.primay-middle-cta-title {
  font-family: "MVBoli";
  font-size: 36px;
  color: #373736;
  margin-bottom: 30px; }

.primay-middle-cta-title::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  background: url(../../images/star-icon.png) no-repeat 0;
  background-size: contain;
  top: -140px;
  margin-left: -40px; }

/* Button */
.primay-middle-cta-btn {
  background: #f28211;
  color: #fff;
  padding: 10px 40px;
  font-family: "futura-md-bt-medium";
  font-size: 18px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease; }

.primay-middle-cta-btn:hover {
  background: #e66a00;
  transform: translateY(-3px);
  text-decoration: none;
  color: #fff; }

/* Arrow circle */
.primay-middle-arrow-circle {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; }

/* Responsive */
@media (max-width: 768px) {
  .primay-middle-main-title {
    font-size: 24px; }

  .primay-middle-section-title {
    font-size: 20px; }

  .primay-middle-description,
  .primay-middle-content-text {
    font-size: 18px;
    line-height: 32px;
    text-align: left; }

  .primay-middle-icon-pen {
    display: none; }

  .primay-middle-icon-puzzle {
    display: none; }

  .primay-middle-icon-dice {
    display: none; }

  .primay-middle-icon-callout {
    display: none; }

  .primay-middle-section-line {
    display: none; }

  .primay-middle-cta-title {
    font-size: 26px;
    margin-bottom: 30px;
    padding: 0 30px; }

  .primay-middle-cta-title::before {
    width: 30px;
    top: -100px;
    left: 80px; }

  .primay-middle-section-line-left {
    /* height: 3px; */
    /* background: #ffdc7a; */
    flex: 0;
    margin-right: 0px; }

  .primay-middle-icon-scissor {
    display: none; }

  .primay-middle-cta-btn {
    font-size: 14px;
    padding: 10px 20px;
    gap: 10px; }

  .primay-middle-arrow-circle {
    width: 35px;
    height: 35px;
    font-size: 16px; }

  .primay-middle-star-icon {
    width: 30px;
    left: 20px;
    top: -40px; }

  .primay-middle-section {
    padding: 30px; }

  .primay-middle-cta-section {
    padding-bottom: 60px; } }
/* FULL WIDTH WITH SIDE SPACING */
.forteachers-section {
  padding: 50px 100px 50px 100px;
  /* <-- 100px left & right */
  position: relative; }

/* Top Title */
.teachers-main-title {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 40px;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 30px;
  display: inline-block;
  position: relative; }

.teachers-main-title::before {
  content: "";
  /* display: block; */
  position: absolute;
  width: 58%;
  height: 100%;
  background: url(../../images/preschool-heading.png) no-repeat 0;
  background-size: contain;
  margin-top: 6px; }

/* Paragraph */
.teachers-description {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  padding-bottom: 30px;
  line-height: 40px; }

/* Section Titles */
.teachers-section-title {
  font-family: "Futura-Bk-BT-Book";
  font-size: 30px;
  color: #f28211;
  font-weight: 600; }

/* Divider line */
.teachers-section-line {
  height: 3px;
  background: #ffdc7a;
  flex: 1;
  margin-left: 15px; }

.teachers-section-line-left {
  height: 3px;
  background: #ffdc7a;
  flex: 1;
  margin-right: 15px; }

/* Content text */
.teachers-content-text {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 40px;
  text-align: justify; }

/* Images */
.teachers-content-img img {
  width: 100%; }

/* Section spacing */
.teachers-section-space {
  margin-bottom: 30px; }

/* Icons */
.teachers-icon-scissor {
  position: absolute;
  top: 330px;
  left: 20px;
  width: 100px; }

.teachers-icon-pen {
  position: absolute;
  top: 440px;
  left: 20px;
  width: 40px; }

.teachers-icon-puzzle {
  position: absolute;
  bottom: 0px;
  right: 30px;
  width: 100px; }

.teachers-icon-dice {
  position: absolute;
  bottom: 0px;
  right: 30px;
  width: 100px; }

.teachers-icon-callout {
  position: absolute;
  top: 350px;
  left: 20px;
  width: 80px; }

/* Section */
.teachers-cta-section {
  padding-bottom: 100px;
  text-align: center;
  position: relative; }

/* Star icon */
.teachers-star-icon {
  position: absolute;
  left: 420px;
  top: -60px;
  width: 60px; }

/* Heading */
.cta-title {
  font-family: "MVBoli";
  font-size: 36px;
  color: #373736;
  margin-bottom: 30px; }

.cta-title::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  background: url(../../images/star-icon.png) no-repeat 0;
  background-size: contain;
  top: -140px;
  margin-left: -40px; }

/* Button */
.cta-btn {
  background: #f28211;
  color: #fff;
  padding: 10px 40px;
  font-family: "futura-md-bt-medium";
  font-size: 18px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease; }

.cta-btn:hover {
  background: #e66a00;
  transform: translateY(-3px);
  text-decoration: none;
  color: #fff; }

/* Arrow circle */
.arrow-circle {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; }

/* Responsive */
@media (max-width: 768px) {
  .teachers-main-title {
    font-size: 24px; }

  .teachers-section-title {
    font-size: 24px; }

  .teachers-description,
  .teachers-content-text {
    font-size: 18px;
    line-height: 32px;
    text-align: left; }

  .teachers-icon-pen,
  .teachers-icon-puzzle {
    width: 35px; }

  .teachers-section-line-left {
    /* height: 3px; */
    /* background: #ffdc7a; */
    flex: 0;
    margin-right: 0px; }

  .teachers-section-line {
    display: none; }

  .cta-title {
    font-size: 26px;
    margin-bottom: 30px;
    padding: 0 30px; }

  .cta-title::before {
    width: 30px;
    top: -110px;
    left: 80px; }

  .cta-btn {
    font-size: 14px;
    padding: 10px 20px;
    gap: 10px; }

  .arrow-circle {
    width: 35px;
    height: 35px;
    font-size: 16px; }

  .teachers-star-icon {
    width: 30px;
    left: 20px;
    top: -40px; }

  .teachers-cta-section {
    padding-bottom: 60px; } }
.offerings-bar {
  width: 100%;
  background-color: #fdc167;
  padding: 10px 20px;
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  margin-top: 85px; }

/* FULL WIDTH WITH SIDE SPACING */
.offerings-section {
  padding: 50px 100px 50px 100px;
  /* <-- 100px left & right */
  position: relative; }

/* Section */
.offerings-section-title {
  text-align: left;
  margin-bottom: 30px; }

.offerings-section-title h4 {
  font-family: "Futura-Bk-BT-Book";
  font-size: 30px;
  color: #f28211;
  font-weight: 600;
  padding-bottom: 30px; }

.offerings-section-title p {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 40px; }

/* Card */
.offerings-custom-card {
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  color: #f28211;
  font-weight: 600;
  border: 1px solid #727271;
  background: #fff;
  margin-bottom: 25px;
  transition: 0.3s;
  cursor: pointer; }

.offerings-custom-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }

/* Header */
.offerings-card-header-custom {
  padding: 10px 15px;
  border-bottom: 1px solid #727271;
  color: #f57c00;
  font-weight: 600;
  display: flex;
  align-items: center; }

.offerings-card-header-custom img {
  width: 40px;
  margin-right: 10px;
  transition: 0.3s; }

/* Image */
.offerings-image-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px; }

.offerings-image-wrapper img {
  width: 100%;
  padding-bottom: 15px; }

/* Overlay */
.offerings-overlay {
  position: absolute;
  top: -100%;
  left: 10px;
  right: 10px;
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 15px;
  font-size: 14px;
  transition: 0.4s ease; }

.offerings-overlay-inner {
  display: block;
  align-items: center; }

.offerings-overlay p {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 20px;
  font-weight: normal; }

/* Trigger hover from full card */
.offerings-custom-card:hover .offerings-overlay {
  top: 10px; }

.offerings-custom-card:hover .offerings-card-header-custom img {
  transform: rotate(360deg); }

/* Description */
.offerings-card-desc {
  font-size: 14px;
  color: #444; }

.offerings-card-desc p {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 20px;
  line-height: 30px;
  font-weight: normal;
  padding: 10px 5px 5px 5px; }

.franchise-partnership {
  padding: 50px 10px; }

.framework-section {
  padding: 0 100px 0px 100px; }

/* Heading */
.framework-title {
  text-align: center;
  font-size: 40px;
  position: relative;
  margin-bottom: 60px;
  font-family: "Futura-Bk-BT-Book";
  text-shadow: 2px 2px 0 #fdc167; }

.framework-title:before,
.framework-title:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 29%;
  height: 4px;
  background: #fdc167; }

.framework-title:before {
  left: 0; }

.framework-title:after {
  right: 0; }

/* Arrow top */
.top-arrow {
  position: absolute;
  right: -80px;
  top: -100px;
  width: 80px; }

/* Box */
.step-box {
  border: 1px solid #999;
  position: relative;
  padding: 50px 20px 30px;
  background: #fff;
  height: 100%;
  font-family: "Futura-Bk-BT-Book"; }

.step-box p {
  font-size: 18px; }

.step-box .step-box-img {
  padding-top: 20px;
  width: 100px; }

/* Number */
.step-number {
  position: absolute;
  top: -10px;
  left: 10px; }

.step-number .step-number-img {
  height: 62px; }

/* Time strip */
.time-strip {
  border-bottom: 1px solid #999;
  padding: 8px;
  text-align: right;
  margin: -50px -20px 20px;
  font-family: "Futura-Bk-BT-Book"; }

/* Title */
.step-title {
  font-size: 30px;
  margin-bottom: 15px;
  font-family: "MVBoli"; }

/* Note */
.note {
  position: absolute;
  bottom: 20px;
  right: 20px; }

.note .note-img {
  width: 130px; }

/* Arrow overlap */
.reassess-arrow {
  position: absolute;
  bottom: 58px;
  left: 36%;
  width: 43%; }

/* Hide slider on desktop */
.mobile-slider {
  display: none; }

/* Section */
.offerings-cta-section {
  padding-bottom: 100px;
  text-align: center;
  position: relative; }

/* Star icon */
.offerings-star-icon {
  position: absolute;
  left: 450px;
  top: -60px;
  width: 60px; }

/* Heading */
.offerings-cta-title {
  font-family: "futura-md-bt-medium";
  font-size: 36px;
  color: #373736;
  margin-bottom: 50px; }

.offerings-top-script {
  font-family: "MVBoli";
  font-size: 40px;
  color: #f28211;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  text-align: left;
  margin-left: 100px; }

.offerings-top-script.visible {
  opacity: 1;
  transform: translateY(0); }

/* Button */
.offerings-cta-btn {
  background: #fff;
  color: #373736;
  padding: 10px 40px;
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  border-radius: 60px;
  border: solid 1px #f28211;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease; }

.offerings-cta-btn:hover {
  transform: translateY(-3px);
  text-decoration: none;
  color: #f28211; }

/* Arrow circle */
.offerings-arrow-circle {
  border: 2px solid #f28211;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #f28211; }

/* Card */
.mobile-offering-card {
  border: 1px solid #727271;
  background: #fff;
  position: relative;
  overflow: visible;
  margin-bottom: 45px;
  padding-bottom: 10px; }

/* Header */
.mobile-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  border-bottom: 1px solid #727271; }

.mobile-card-header img {
  width: 30px;
  height: auto;
  transition: transform 0.5s ease; }

/* Rotate Header Icon when card expands */
.mobile-offering-card.active .mobile-card-header img {
  transform: rotate(360deg); }

.mobile-card-header h4 {
  margin: 0;
  font-family: "Futura-Bk-BT-Book";
  font-size: 18px;
  color: #f28211;
  font-weight: 600; }

/* Main Content */
.mobile-card-content {
  padding: 16px 15px; }

.mobile-card-content img {
  padding-bottom: 15px; }

.mobile-card-content p,
.expand-content p {
  font-size: 18px;
  line-height: 26px;
  color: #373736;
  margin: 0; }

/* Expand Content */
.expand-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
  padding: 0 15px; }

.expand-content p {
  padding-bottom: 25px;
  color: #f28211; }

.expand-content img {
  padding-bottom: 25px; }

.mobile-offering-card.active .expand-content {
  opacity: 1;
  visibility: visible;
  padding: 0 15px 25px; }

/* Arrow Button */
.bottom-arrow {
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #f28211;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2; }

.bottom-arrow i {
  color: #fff;
  font-size: 16px;
  transition: transform 0.4s ease; }

/* Rotate Arrow */
.mobile-offering-card.active .bottom-arrow i {
  transform: rotate(180deg); }

/* Mobile */
@media (max-width: 768px) {
  .desktop-view {
    display: none; }

  .mobile-slider {
    display: block;
    position: relative; }

  .mobile-slider .carousel-control-prev,
  .mobile-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1; }

  .mobile-slider .carousel-control-prev {
    left: -25px;
    /* adjust as needed */ }

  .mobile-slider .carousel-control-next {
    right: -25px;
    /* adjust as needed */ }

  .mobile-slider .carousel-control-prev-icon,
  .mobile-slider .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: 100%; }

  .carousel-control-next, .carousel-control-prev {
    color: #373736 !important; }

  .carousel-item {
    padding: 10px; }

  .offerings-bar {
    margin-top: 67px;
    font-size: 18px; }

  .offerings-section {
    padding: 30px 30px 0 30px; }

  .offerings-section-title h4 {
    font-size: 24px;
    padding-bottom: 20px; }

  .offerings-section-title p {
    font-size: 18px;
    line-height: 32px; }

  .offerings-card-header-custom {
    font-size: 18px; }

  .offerings-card-desc p {
    font-size: 18px;
    line-height: 32px; }

  .offerings-overlay p {
    font-size: 18px;
    line-height: 32px; }

  .offerings-card-desc {
    padding: 0px; }

  .guidance-360 {
    padding: 120px 10px; }

  .top-arrow {
    display: none; }

  .framework-title {
    font-size: 28px;
    margin-bottom: 30px; }

  .framework-title:before,
  .framework-title:after {
    height: 0; }

  .framework-section {
    padding: 0 20px 20px 20px; }

  .reassess-arrow {
    display: none; }

  .step-box {
    height: 280px; }

  .note .note-img {
    position: absolute;
    width: 85px;
    bottom: -10px;
    right: -10px; }

  .step-box .step-box-img {
    padding-top: 10px; }

  .offerings-top-script {
    font-size: 32px;
    margin-left: 0px; }

  .offerings-cta-title {
    font-size: 24px;
    margin-bottom: 20px; }

  .offerings-cta-section {
    padding: 0 10px 60px 10px; }

  .offerings-cta-btn {
    font-size: 14px;
    padding: 5px 15px; }

  .offerings-arrow-circle {
    width: 35px;
    height: 35px;
    font-size: 16px; } }
.professional-bar {
  width: 100%;
  background-color: #ffb544;
  padding: 10px 20px;
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  margin-top: 85px; }

/* FULL WIDTH WITH SIDE SPACING */
.professional-section {
  padding: 50px 100px 50px 100px;
  /* <-- 100px left & right */
  position: relative; }

.professional-content-title {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: "futura-md-bt-medium";
  color: #373736;
  text-shadow: 2px 2px 0 #fdc167; }

/* Content text */
.professional-content-text {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 40px;
  text-align: justify; }

.professional-description {
  color: #373736;
  font-family: "Futura-Bk-BT-Book";
  font-size: 22px;
  line-height: 40px; }

/* Top buttons */
.professional-top-buttons .btn {
  border-radius: 30px;
  background: #ffefd6;
  color: #333;
  margin: 5px;
  padding: 8px 30px;
  border: 1px solid #ffd18c;
  transition: all 0.3s ease;
  font-family: "Futura-Bk-BT-Book";
  font-size: 20px;
  width: 300px; }

.professional-top-buttons .btn:hover {
  background: #ffd18c;
  color: #000;
  transform: translateY(-2px); }

.professional-top-buttons .active-btn {
  background: #ffd18c; }

.events-section {
  margin-top: 50px; }

.events-section-inner {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease; }

.info-value {
  font-family: "Futura-Bk-BT-Book";
  color: #f28211;
  font-weight: 600;
  border-bottom: solid 1px #f28211;
  border-top: solid 1px #f28211;
  line-height: 40px;
  text-align: center; }

.events-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-family: "futura-md-bt-medium";
  color: #373736;
  text-shadow: 2px 2px 0 #fdc167; }

/* Card Link */
.event-card {
  display: block;
  text-decoration: none !important;
  margin-bottom: 25px; }

/* Event Card */
.event-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease; }

/* Hover */
.event-card:hover .event-item {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12); }

/* Date Box */
/* Date Box */
.date-box {
  width: 95px;
  min-width: 95px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f59a1b, #f28211);
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  box-shadow: 0 10px 25px rgba(240, 138, 18, 0.35); }

.month {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase; }

.day {
  font-size: 28px;
  line-height: 1;
  font-weight: 800; }

.year {
  font-size: 13px;
  opacity: 0.95; }

/* Content */
.event-content {
  flex: 1;
  padding-right: 55px; }

.event-content h5 {
  font-size: 22px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
  font-family: "futura-md-bt-medium";
  color: #373736; }

.event-item:hover h5::after {
  width: 100%; }

.event-content h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #f28211;
  transition: width 0.3s ease; }

.event-content p {
  margin: 10px 0 0 0;
  color: #373736;
  font-size: 18px;
  line-height: 26px;
  font-family: "futura-md-bt-medium"; }

/* Arrow Button */
.event-item::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f59a1b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.35s ease; }

/* Arrow Hover */
.event-card:hover .event-item::after {
  transform: translateX(5px); }

.hero-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 2.5rem; }

.event-content-details h5 {
  font-size: 26px;
  font-family: "futura-md-bt-medium";
  color: #f28211;
  padding-bottom: 20px; }

.event-content-details p {
  margin: 0;
  color: #373736;
  font-size: 18px;
  font-family: "futura-md-bt-medium";
  padding-bottom: 20px;
  line-height: 32px; }

.cat-badge {
  display: inline-block;
  padding: 0.25em 0.8em;
  border-radius: 6px;
  font-family: "Futura-Bk-BT-Book";
  font-size: 12px;
  font-weight: 700;
  background: #f28211;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem; }

.post-meta {
  display: inline-block;
  padding: 0.25em 0.8em;
  border-radius: 6px;
  font-family: "Futura-Bk-BT-Book";
  font-size: 12px;
  font-weight: 700;
  background: #fdc167;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  gap: 20px; }

/* Section Box */
.workshop-main-section {
  padding: 0px 100px 50px 100px;
  /* <-- 100px left & right */
  position: relative; }

.workshop-section {
  background: #fff;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); }

/* Heading */
.workshop-title {
  font-size: 32px;
  color: #f58220;
  font-weight: 600;
  font-family: "Futura-Bk-BT-Book";
  margin-bottom: 40px; }

/* Subtitle */
.workshop-subtitle {
  font-size: 20px;
  color: #373736;
  margin-bottom: 20px;
  font-family: "MVBoli";
  transform: rotate(-5deg);
  position: absolute;
  top: 40px;
  left: 300px; }

/* Paragraph */
.workshop-text {
  font-size: 22px;
  color: #373736;
  line-height: 40px;
  font-family: "Futura-Bk-BT-Book"; }

/* Bullet list */
.workshop-list {
  margin-top: 18px;
  padding-left: 20px; }

.workshop-list li {
  margin-bottom: 8px;
  font-size: 20px;
  color: #373736;
  font-family: "Futura-Bk-BT-Book"; }

/* Right image */
.workshop-img {
  position: absolute;
  bottom: 160px;
  right: 150px; }
  .workshop-img img {
    width: 150px; }

/* Align bottom image */
.img-wrapper {
  display: flex;
  align-items: flex-end;
  height: 100%; }

/* Hide mobile date on desktop */
.mobile-event-date {
  display: none; }

:root {
  --circle-1-border: #ffecba;
  --circle-2-border: #ffdcaa;
  --circle-3-border: #fdcdae;
  --teal: #43aa8b;
  --blue: #4d9de0;
  --rose: #e76f51;
  --circle-size: 420px;
  --font-script: "MVBoli";
  --font-body: "Futura-Bk-BT-Book"; }

/* ─── DESKTOP VENN ─────────────────────────────────────────── */
.venn-wrapper {
  position: relative;
  width: 860px;
  height: 780px;
  margin: 0px auto; }

.venn-circle {
  position: absolute;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  border: 2.5px solid;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 36px;
  cursor: pointer;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0; }

.venn-circle:hover {
  z-index: 0; }

/* ── Subject Expertise — default & hover ── */
.circle-subject {
  top: 0;
  left: 100px;
  z-index: 0;
  border-color: var(--circle-1-border); }

.circle-subject:hover {
  background: rgba(255, 246, 225, 0.18);
  border-color: var(--circle-1-border); }

/* ── Soft Skills — default & hover ── */
.circle-soft {
  top: 0;
  right: 30px;
  border-color: var(--circle-2-border); }

.circle-soft:hover {
  background: rgba(255, 238, 214, 0.18);
  border-color: var(--circle-2-border); }

/* ── Pedagogy — default & hover ── */
.circle-pedagogy {
  bottom: 75px;
  left: 53%;
  transform: translateX(-50%);
  border-color: var(--circle-3-border); }

.circle-pedagogy:hover {
  background: rgba(231, 111, 81, 0.18);
  border-color: var(--circle-3-border);
  /* override the base translateX so scale works correctly */ }

/* ── Labels ── */
.circle-label {
  position: absolute;
  font-family: var(--font-script);
  font-size: 28px;
  color: #373736;
  white-space: nowrap;
  pointer-events: none;
  transition: color 0.35s ease; }

.label-subject {
  top: 18px;
  left: 60px; }

.label-soft {
  top: 18px;
  right: 48px; }

.label-pedagogy {
  bottom: 55px;
  left: 53%;
  transform: translateX(-50%); }

/* ── Content blocks ── */
.content-block {
  position: absolute;
  font-size: 16px;
  pointer-events: none;
  transition: opacity 0.3s ease; }

/* Dim non-hovered content when any circle is hovered */
.venn-wrapper.any-hover .content-block {
  opacity: 0.25; }

.venn-wrapper.hover-subject .content-subject,
.venn-wrapper.hover-soft .content-soft,
.venn-wrapper.hover-pedagogy .content-pedagogy {
  opacity: 1; }

.content-subject {
  top: 90px;
  left: 155px;
  width: 205px; }

.content-soft {
  top: 90px;
  right: 105px;
  width: 210px; }

.content-pedagogy {
  bottom: 150px;
  left: 53%;
  transform: translateX(-50%);
  width: 230px;
  text-align: center; }

.content-block ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.content-block ul li {
  padding-left: 1.1em;
  position: relative;
  margin-bottom: 6px; }

.content-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700; }

/* ── Center icon ── */
.center-icon {
  position: absolute;
  top: 40%;
  left: 54%;
  transform: translate(-50%, -60%);
  z-index: 10;
  pointer-events: none;
  transition: transform 0.35s ease; }

.venn-wrapper.any-hover .center-icon {
  transform: translate(-50%, -60%) scale(1.2); }

.center-icon img {
  width: 40px; }

/* ─── MOBILE CARDS ─────────────────────────────────────────── */
.mobile-section {
  display: none; }

.circle-card {
  border-radius: 50%;
  border: 2.5px solid var(--yellow);
  padding: 36px 30px;
  margin: 20px auto;
  max-width: 340px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }

.circle-card.card-subject {
  border-color: var(--circle-1-border); }

.circle-card.card-subject:hover {
  background: rgba(255, 246, 225, 0.18);
  border-color: var(--circle-1-border); }

.circle-card.card-soft {
  border-color: var(--circle-2-border); }

.circle-card.card-soft:hover {
  background: rgba(255, 238, 214, 0.18);
  border-color: var(--circle-2-border); }

.circle-card.card-pedagogy {
  border-color: var(--circle-3-border); }

.circle-card.card-pedagogy:hover {
  background: rgba(231, 111, 81, 0.18);
  border-color: var(--circle-3-border); }

.circle-card .card-title {
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 700;
  color: #373736;
  margin-bottom: 14px;
  transition: color 0.35s ease; }

.circle-card.card-subject:hover .card-title {
  color: #373736; }

.circle-card.card-soft:hover .card-title {
  color: #373736; }

.circle-card.card-pedagogy:hover .card-title {
  color: #373736; }

.circle-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.65; }

.circle-card ul li {
  padding-left: 1.1em;
  position: relative;
  margin-bottom: 6px; }

.circle-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700; }

.parent-partner-img {
  width: 75%; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .venn-wrapper {
    display: none !important; }

  .mobile-section {
    display: block; } }
/* Responsive */
@media (max-width: 768px) {
  .event-item {
    flex-direction: row;
    padding: 0; }

  .parent-partner-img {
    padding: 20px 0;
    width: 35%; }

  .venn-section {
    padding: 0px 10px;
    margin-top: -20px; }

  .date-box {
    margin-bottom: 10px;
    height: 90px; }

  .img-wrapper {
    justify-content: center;
    margin-top: 20px; }

  .professional-bar {
    margin-top: 67px;
    font-size: 18px; }

  .workshop-main-section {
    padding: 30px; }

  .professional-section {
    padding: 30px; }

  .professional-top-buttons .btn {
    font-size: 16px;
    width: 280px; }

  .professional-content-text {
    font-size: 18px;
    line-height: 32px;
    text-align: left; }

  .events-section {
    margin-top: 40px; }

  .events-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #222; }

  .event-card {
    display: block;
    text-decoration: none !important;
    margin-bottom: 22px; }

  .event-item {
    display: flex;
    flex-direction: column;
    gap: 14px; }

  .event-item:active {
    transform: scale(0.98); }

  /* Left Date Box */
  .date-box {
    display: none; }

  .mobile-event-date {
    display: block;
    border-radius: 14px;
    background: linear-gradient(180deg, #f59a1b, #e97700);
    color: #fff;
    text-align: center;
    padding: 12px 8px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(240, 138, 18, 0.35); }

  .month {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase; }

  .day {
    font-size: 26px;
    line-height: 1;
    font-weight: 800; }

  .year {
    font-size: 12px;
    opacity: 0.95; }

  /* Layout */
  .event-item {
    display: flex;
    align-items: flex-start;
    gap: 16px; }

  /* Right Content */
  .event-content {
    width: 100%;
    padding: 30px; }

  .event-content h5 {
    font-size: 20px;
    margin-bottom: 10px; }

  .event-content p {
    width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.8; }

  /* Arrow */
  .event-item::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f59a1b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.3s ease; }

  .event-card:active .event-item::after {
    transform: translateX(3px); }

  .event-content-details h5 {
    font-size: 22px;
    padding-bottom: 10px; }

  .event-content-details p {
    font-size: 16px;
    line-height: 28px; }

  .professional-description {
    font-size: 18px;
    line-height: 32px; }

  .professional-content-title {
    font-size: 22px; }

  .workshop-title {
    font-size: 16px;
    margin-bottom: 20px; }

  .workshop-subtitle {
    font-size: 14px;
    top: 28px;
    left: 10px;
    line-height: 18px;
    width: 100%; }

  .workshop-text {
    font-size: 18px;
    line-height: 32px;
    margin-top: 30px; }

  .workshop-list li {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 0px; }

  .workshop-section {
    padding: 20px;
    margin-bottom: 30px; }

  .workshop-img {
    display: none; } }
.insights-bar {
  width: 100%;
  background-color: #fa9b27;
  padding: 10px 20px;
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  margin-top: 85px; }

/* FULL WIDTH WITH SIDE SPACING */
.insights-section {
  padding: 50px 100px 50px 100px;
  /* <-- 100px left & right */
  position: relative; }

.category-links {
  padding-bottom: 30px; }

/* Category Links */
.category-links a {
  position: relative;
  color: #373736;
  margin-right: 10px;
  text-decoration: none;
  padding-bottom: 3px;
  transition: color 0.3s ease;
  font-family: "Futura-Bk-BT-Book";
  font-size: 20px; }

/* Underline (hidden by default) */
.category-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #fa9b27;
  transition: width 0.3s ease; }

/* Hover effect */
.category-links a:hover {
  color: #fa9b27; }

.category-links a:hover::after {
  width: 100%; }

/* Active link */
.category-links a.active {
  color: #fa9b27;
  font-weight: 600; }

.category-links a.active::after {
  width: 100%; }

.category-links span {
  color: #373736; }

/* Blog Card */
.blog-card {
  background: #fff;
  padding: 20px;
  margin-bottom: 25px;
  border: 10px solid #e7e7e7;
  transition: all 0.35s ease; }

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); }

/* Image Placeholder */
.blog-img {
  border: 6px solid #fde69f;
  height: 350px;
  width: 100%;
  overflow: hidden;
  /* keeps zoom inside */
  position: relative; }

/* If using actual image inside */
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease; }

/* Zoom effect */
.blog-card:hover .blog-img img {
  transform: scale(1.1); }

/* Title */
.blog-title {
  color: #fa9b27;
  font-size: 32px;
  font-weight: 600;
  font-family: "Futura-Bk-BT-Book";
  margin-bottom: 10px; }

/* Author */
.blog-author {
  font-size: 16px;
  color: #373736;
  margin-bottom: 10px;
  font-family: "Futura-Bk-BT-Book"; }

/* Content */
.blog-text {
  font-size: 20px;
  color: #373736;
  font-family: "Futura-Bk-BT-Book"; }

/* Button */
.read-btn {
  background: #fa9b27;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  font-family: "Futura-Bk-BT-Book";
  font-size: 18px; }

.read-btn:hover {
  background: #e26f00;
  color: #fff;
  text-decoration: none; }

/* Pagination */
.pagination .page-link {
  color: #fa9b27;
  font-family: "Futura-Bk-BT-Book";
  font-size: 18px; }

.pagination .active .page-link {
  background: #f58220;
  border-color: #f58220;
  color: #fff; }

.post-meta-blog {
  display: inline-block;
  font-family: "Futura-Bk-BT-Book";
  font-size: 12px;
  font-weight: 700;
  color: #f28211;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  gap: 20px; }

.blogs-section {
  background: #fff;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); }

.empty-state {
  background: #fff;
  border: 10px solid #e7e7e7;
  transition: all 0.35s ease;
  padding: 5rem 0;
  text-align: center;
  color: #f28211; }

.empty-icon {
  font-size: 4.5rem;
  margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 768px) {
  .blog-img {
    margin-bottom: 15px; }

  .insights-bar {
    font-size: 18px;
    margin-top: 67px; }

  .insights-section {
    padding: 30px; }

  .category-links a {
    font-size: 16px;
    line-height: 36px; }

  .blog-title {
    font-size: 26px; }

  .blog-text {
    font-size: 18px;
    line-height: 32px; }

  .blog-img {
    height: 250px; }

  .post-meta-blog {
    display: flex;
    padding: 0px 0px;
    margin-bottom: 5px;
    width: 100%; }

  .read-btn {
    margin-left: 0 auto;
    margin-right: 0 auto; }

  .blogs-section {
    padding: 20px; }

  .hero-img {
    margin-bottom: 20px; } }
.connect-bar {
  width: 100%;
  background-color: #f28211;
  padding: 10px 20px;
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  margin-top: 85px; }

/* FULL WIDTH WITH SIDE SPACING */
.connect-section {
  padding: 50px 100px 50px 100px;
  /* <-- 100px left & right */
  position: relative; }

/* Section */
.cta-section {
  font-family: "Futura-Bk-BT-Book"; }

/* Bold line */
.cta-bold {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px; }

/* Paragraph */
.cta-text {
  font-size: 22px;
  color: #373736;
  line-height: 1.7; }

/* Script CTA */
.cta-script h2 {
  font-family: "MVBoli";
  font-size: 34px;
  margin: 40px 0;
  color: #373736;
  position: relative;
  display: inline-block; }

/* Orange accent */
.cta-script h2::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  width: 40px;
  height: 100px;
  background: url("../../images/spark.png") no-repeat center;
  background-size: contain;
  transform: translateY(-50%); }

/* connect info */
.connect-info {
  margin-top: 20px; }

.connect-info p {
  font-family: "Futura-Bk-BT-Book";
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #373736; }

.connect-info a {
  color: #373736; }

.connect-info i {
  margin-right: 10px;
  color: #f28211;
  font-size: 28px;
  width: 30px; }

.contact-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #f28211;
  overflow: hidden; }

.contact-title {
  font-family: "MVBoli";
  font-size: 34px;
  margin-bottom: 10px;
  color: #373736; }

.spark {
  color: #f28211;
  font-size: 28px; }

.contact-subtitle {
  font-size: 20px;
  color: #373736;
  margin-bottom: 20px; }

.contact-card label {
  color: #f28211;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px; }

.input-wrapper {
  position: relative; }

.input-wrapper i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #373736;
  z-index: 2; }

.input-wrapper .form-control {
  padding-left: 50px; }

.form-control {
  height: 54px;
  border-radius: 12px;
  border: 1px solid #e8e0d2;
  background: #faf8ef;
  box-shadow: none; }

.form-control:focus {
  border-color: #f28211;
  box-shadow: 0 0 0 3px rgba(245, 130, 0, 0.15); }

.textarea-wrapper {
  position: relative; }

.textarea-wrapper i {
  position: absolute;
  top: 20px;
  left: 18px;
  color: #373736;
  z-index: 2; }

.textarea-wrapper textarea {
  padding-left: 50px;
  padding-top: 18px;
  resize: none;
  min-height: 170px; }

.send-btn {
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 350px;
  height: 70px;
  border: none;
  border-radius: 50px;
  background: #f28211;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: 0.35s ease;
  display: block; }

.send-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(255, 140, 0, 0.35); }

.send-btn i {
  transition: 0.3s; }

.send-btn:hover i {
  transform: translateX(5px); }

.privacy-text {
  text-align: center;
  margin-top: 20px;
  color: #777;
  font-size: 15px; }

.privacy-text i {
  margin-right: 8px; }

.sf-select {
  appearance: none;
  /* Disable the default arrow */
  -webkit-appearance: none;
  /* For WebKit-based browsers */
  -moz-appearance: none;
  /* For Firefox */
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer; }

.success-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center; }

.error-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  color: #fca5a5;
  font-size: 0.88rem; }

@media (max-width: 768px) {
  .connect-bar {
    font-size: 18px;
    margin-top: 67px; }

  .connect-section {
    padding: 30px; }

  .cta-bold {
    font-size: 22px; }

  .cta-text {
    font-size: 18px;
    line-height: 32px; }

  .cta-script h2 {
    font-size: 24px;
    margin-bottom: 20px; }

  .cta-script h2::after {
    right: -20px;
    top: 38%; }

  .connect-info p {
    font-size: 18px; }

  .contact-card {
    padding: 25px; }

  .contact-title {
    font-size: 38px; }

  .contact-subtitle {
    font-size: 16px; }

  .send-btn {
    height: 60px;
    font-size: 18px; } }
:root {
  --orange-light: #fde69f;
  --orange-mid: #fd7f2e;
  --orange-deep: #e07000;
  --tape-yellow: rgba(255, 213, 100, 0.75);
  --tape-red: rgba(230, 120, 90, 0.65); }

/* ── Grid ── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0 2rem; }

/* ── Profile Card ── */
.profile-card {
  position: relative;
  border: 8px solid var(--orange-light);
  background: #fff;
  padding: 1rem 1rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.2s;
  z-index: 1; }

.profile-card:hover {
  border-color: var(--orange-mid); }

.profile-card:hover img {
  transform: scale(1.1); }

.profile-card.active {
  border-color: var(--orange-deep); }

.profile-card-wrap {
  position: relative;
  padding-bottom: 14px; }

.profile-card-wrap::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0%;
  width: 92%;
  height: 10%;
  background: #f5f5f5;
  transform: rotate(-3deg);
  transform-origin: bottom center;
  z-index: 0;
  transition: transform 0.25s; }

/* Tape decoration */
.tape {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 28%;
  height: 25%; }

.tape-yellow {
  background: url(../../images/tape1.png) no-repeat !important;
  background-size: contain !important; }

.tape-light-orange {
  background: url(../../images/tape2.png) no-repeat !important;
  background-size: contain !important; }

.tape-mid-orange {
  background: url(../../images/tape3.png) no-repeat !important;
  background-size: contain !important; }

.tape-dark-orange {
  background: url(../../images/tape4.png) no-repeat !important;
  background-size: contain !important; }

.card-name {
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  color: #373736; }

.card-role {
  font-family: "futura-md-bt-medium";
  font-size: 18px;
  font-weight: 500;
  color: var(--orange-mid);
  margin-bottom: 0.75rem; }

.card-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: #ebebeb;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s; }

.card-photo .photo-placeholder {
  color: #bbb;
  font-size: 0.75rem; }

.detail-panel-main {
  display: none; }

/* ── Detail Panel (accordion) ── */
.detail-panel {
  background: #fff;
  border: 8px solid var(--orange-light);
  padding: 5px;
  margin-bottom: 1.5rem;
  animation: slideRight 0.35s ease; }

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-10px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
.detail-panel.show {
  display: block; }

.detail-panel-main.show {
  display: flex;
  gap: 10px; }

/* Orange stripe accent (right side) */
.detail-stripe {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  gap: 5px;
  padding: 0 10px;
  align-items: stretch; }

.stripe-bar {
  width: 8px;
  background: var(--orange-light); }

.stripe-bar:nth-child(2) {
  background: var(--orange-mid); }

.stripe-bar:nth-child(3) {
  background: #1a1a1a; }

.detail-inner {
  padding: 1.75rem 80px 1.75rem 1.75rem; }

.detail-name {
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  margin-bottom: 2px; }

.detail-role {
  font-family: "futura-md-bt-medium";
  font-size: 18px;
  font-weight: 500;
  color: var(--orange-mid);
  margin-bottom: 1.25rem; }

.detail-body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap; }

.detail-photo {
  flex: 0 0 160px;
  width: 160px;
  aspect-ratio: 4/5;
  background: #ebebeb;
  border-radius: 2px;
  overflow: hidden; }

.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s; }

.detail-text {
  font-family: "futura-md-bt-medium";
  flex: 1 1 260px;
  font-size: 18px;
  line-height: 30px;
  color: #373736;
  text-align: justify; }

.detail-tagline {
  text-align: right;
  color: var(--orange-mid);
  font-size: 1.8rem;
  margin-top: 1.25rem;
  font-family: "MVBoli";
  transform: rotate(-5deg); }

/* ── Border colours per card index ── */
.profile-card[data-idx="0"] {
  border-color: #fde69f; }

.profile-card[data-idx="1"] {
  border-color: #ffd18c; }

.profile-card[data-idx="2"] {
  border-color: #ffb544; }

.profile-card[data-idx="3"] {
  border-color: #f28211; }

/* ── Hide grid when a detail is open ── */
.profiles-grid.hidden {
  display: none; }

/* ── Back button ── */
.btn-back {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 2px solid var(--orange-mid);
  color: var(--orange-mid);
  font-family: "futura-md-bt-medium";
  font-size: 20px;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 1.25rem;
  transition: background 0.2s, color 0.2s; }

.btn-back:hover {
  background: var(--orange-mid);
  color: #fff; }

.btn-back.visible {
  display: flex;
  margin-left: auto;
  margin-right: auto; }

.btn-back svg {
  flex-shrink: 0; }

/* ── Mobile tweaks ── */
@media (max-width: 576px) {
  .profiles-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem; }

  .detail-inner {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem; }

  .detail-photo {
    flex: 0 0 100%;
    width: 100%; }

  .detail-text {
    font-size: 16px;
    line-height: 30px;
    text-align: left; }

  .detail-panel-main.show {
    gap: 5px;
    flex-direction: column; }

  .detail-panel {
    margin-bottom: 10px; } }
@media (max-width: 380px) {
  .profiles-grid {
    grid-template-columns: 1fr; } }

/*# sourceMappingURL=style.css.map */
