@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
}
:root {
    --primary-color: #042353;
    --primary-light-color: #f5f8fe;
    --secondary-color: #f6680e;
    --secondary-light-color: #ffd8bf;
    --owl-dots: #e8e8e8;
    --owl-dots-active: #d3d3d3;
}
body {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.toggle-btn,
.close-toggle {
  display: none;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 0.3rem;
  width: 100%;
}

.img-hover {
  transform: scale(1);
  transition: all 0.3s ease 0s;
}
.img-hover:hover {
  transform: scale(1.03);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

a {
  transition: all 0.3s ease 0s;
  display: inline-block;
  color: #c6e1ff;
  text-decoration: none;
  font-size: 1rem;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: var(--primary-color);
  outline: 0px;
}

ul {
  padding-left: 0px;
  list-style: none;
}

p {
  margin-bottom: 0.6em;
  font-size: calc(1.2rem + 0.01vw);
}

.font-small {
  font-size: 0.9rem;
}

section {
  padding: 3em 0;
  position: relative;
}

.text-white {
  color: #fff !important;
}

.btn-cta {
  background-color: var(--primary-color);
  padding: 0.3em 1.5em;
  color: #fff;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  transition: all 0.7s;
}
.btn-cta:hover {
  color: var(--primary-color);
  background: transparent;
}

.btn-main {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.3em 2em;
  border-radius: 1.3rem;
  border: 1px solid var(--primary-color);
  transition: all 0.7m;
}
.btn-main:hover {
  color: var(--primary-color);
  background: transparent;
}

.btn-main-reverse {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.3em 2em;
  border-radius: 1.3rem;
  border: 1px solid var(--primary-color);
  transition: all 0.7m;
}
.btn-main-reverse:hover {
  color: #fff;
  background: var(--primary-color);
}

.btn-lg {
  font-size: 1.4rem;
  padding: 0.3em 3em;
}

.btn-details {
  color: var(--primary-color);
  font-size: 0.9rem;
  padding: 0.3rem 0
}
.btn-details:hover {
  color: var(--secondary-color);

}

header {
  padding: 0.5em 0;
}

.section-heading {
  text-align: left;
  margin-bottom: 1em;
}
.section-heading h1 {
  position: relative;
  margin-bottom: 1em;
}
.section-heading h1::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0; 
  border-radius: 30px;
}
.section-heading h2 {
  font-size: calc(0.3rem + 1vw);
  font-weight: 500;
  margin-bottom: 0.5em;
  position: relative;
  color: var(--primary-color);
}
.section-heading h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0%; 
  border-radius: 30px;
}
.section-heading p {
  font-size: 1.2rem;
}

.nav-menu {
  max-width: 1300px;
  display: flex;
  padding: 0.3rem 0; 
  align-items: center;
}
.nav-menu .appointment-btn {
  background-color: var(--secondary-color);
  border-radius: 0.3rem; 
  padding: 0 0.5rem;
  line-height: 2.3;
  height: 30px; 
  margin-top: 2px;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
}
.nav-menu .appointment-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.nav-menu .menu-inner {
  padding-bottom: 2px;
  width: 80%;
  padding-left: 0px;
}
.nav-menu .menu-inner ul .menu-item-has-children ul li {
  width: 100%;
}
.nav-menu .menu-inner ul {
  margin: 0;
  flex-direction: row;
}
.nav-menu .menu-inner ul .menu-item-has-children {
  position: relative;
}
.nav-menu .menu-inner ul .menu-item-has-children .menu-item-has-children ul {
  position: absolute;
  z-index: 9999;
  width: 240px;
  padding: 10px 0;
}
.nav-menu .menu-inner ul .menu-item-has-children a i {
  padding: 0 2px;
  top: 2px;
  position: relative;
}
.nav-menu .menu-inner ul li.current-menu-item a {
  color: var(--primary-color);
}
.nav-menu .menu-inner ul li.menu-item-has-children ul {
  display: none;
}
.nav-menu .menu-inner ul li.menu-item-has-children:hover ul {
  display: block;
  background: #fff;
}
.nav-menu .menu-inner ul li.menu-item-has-children:hover ul li {
  border-bottom: 1px solid #ddd;
}

.nav-menu .menu-inner ul li.menu-item-has-children:hover ul li:last-child {
  border-bottom: none;
}
.nav-menu .menu-inner ul > li {
  display: inline-block;
  
}
.nav-menu .menu-inner ul > li a {
  padding: 10px 15px;
  color: #000;
  display: block;
}
.nav-menu .menu-inner ul > li a:hover {
  color: var(--primary-color);
}

.navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.3em 1em;
}

.menu-item-has-children .nav-menu .menu-inner .nav-menu .menu-inner ul .menu-item-has-children ul li a {
  color: #000;
  padding: 10px 20px;
}

.nav-menu .menu-inner ul .menu-item-has-children ul li a:hover {
  color: var(--primary-color);
}

section.slider-section {
  padding-top: 0;
  padding-bottom: 0;
}
section.slider-section img {
  border-radius: 0 !important;
}

.owl-theme .owl-nav [class*=owl-] {
  margin: 20px !important;
}

button:focus {
  outline: none;
}

.owl-theme .owl-nav [class*=owl-]:hover,
.owl-theme .owl-nav [class*=owl-]:focus {
  background: none;
  border: none;
  outline: none;
}

.owl-theme .owl-nav [class*=owl-]:hover i {
  color: var(--secondary-color);
}

.owl-nav button {
  position: absolute;
  top: calc(50% - 21px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.owl-nav .owl-prev {
  left: 0;
}
.owl-nav .owl-next {
  right: 0;
}
.owl-nav [class*=owl-] i {
  margin: auto;
  font-size: 1.6rem;
  background: #fff;
  color: var(--primary-color);
  padding: 0.2rem 0.6rem;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 8px -6px;
}

.owl-dots {
  position: absolute;
  top: calc(100% + 10px);
  width: 107%;
  left: -21px;
}
.owl-dots .owl-dot span {
  background: var(--owl-dots) !important;
}
.owl-dots .owl-dot.active span {
  background: var(--owl-dots-active)!important;
}
 

section.our-usp {
  padding: 3rem 0;
  top: -1rem;
  background: var(--primary-light-color)
}

.usp-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
.usp-wrapper .usp-item {
  display: flex; 
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-right: 0.5rem;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
}

.usp-wrapper .usp-item i {
  font-size: 3rem;
  color: var(--primary-color)
}

.usp-wrapper .usp-item h4 {
  color: var(--primary-color);
  font-weight: 500;
}

.usp-wrapper .usp-item p {
  font-size: 0.9rem;
}

.home-page-icons-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 5px 10px 15px;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;

    cursor: grab;

    user-select: none;
}

.home-page-icons-wrapper::-webkit-scrollbar {
    display: none;
}

.home-page-icons-wrapper.dragging {
    cursor: grabbing;
}

.home-page-icons-wrapper a {
    user-select: none;
    -webkit-user-drag: none;
}
.home-icon-item {
  display: flex;
    flex: 0 0 180px;
    width: 180px;
    min-width: 180px;

    box-sizing: border-box;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    background: #fff;

    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);

    padding: 1rem;

    border-radius: 0.3rem;

    text-align: center;

    transform: scale(1);
    transition: transform 0.5s;
}
.home-icon-item:hover {
  transform: scale(1.05);
}
.home-icon-item img {
  max-width: 5rem;
}

.home-icon-item h3 {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 400;
  margin-top: 0.5rem;
}

.photo-stories-section {
  background: #fff1e5;
  padding: 2rem 0;
}

 

.photo-stories-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.photo-story-card {
  background: #fff;
  border: 1px solid #efdfd2;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 18%);
  padding: 12px;
}

.photo-story-feature-link,
.photo-story-inline-link {
  color: #111;
  display: block;
  width: 100%;
}

.photo-story-hero {
  aspect-ratio: 448 / 300;
  border-radius: 4px;
  margin: 0 0 22px;
  overflow: hidden;
}

.photo-story-hero img,
.photo-story-inline-link img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.photo-story-feature-link:hover .photo-story-hero img,
.photo-story-inline-link:hover img {
  transform: scale(1.04);
}

.photo-story-card-large h2 {
  color: #111;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.65;
  margin: 0 12px 26px;
}

.photo-count {
  align-items: center;
  color: var(--secondary-color);
  display: flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 9px;
  line-height: 1.2;
}

.photo-story-card-large > .photo-story-feature-link > .photo-count {
  margin: 0 12px 14px;
}

.photo-count i {
  font-size: 0.95rem;
}

.photo-story-mini {
  padding: 2px 0 20px;
}

.photo-story-inline-link {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 142px minmax(0, 1fr);
}

.photo-story-inline-link img {
  border-radius: 4px;
  height: 96px;
}

.photo-story-content h3 {
  color: #111;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 0 0 10px;
}

.photo-story-feature-link:hover h2,
.photo-story-inline-link:hover h3 {
  color: var(--primary-color);
}

.photo-story-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 10px 12px 20px;
}

.photo-story-list-item .photo-story-inline-link {
  gap: 14px;
}

.photo-story-list-item .photo-story-inline-link img {
  height: 94px;
}

.video-gallery-section {
  background: #fff;
  padding: 2.4rem 0;
}

.video-gallery-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.video-gallery-item {
  border-right: 1px solid #d8d8d8;
  padding: 0 16px;
}

.video-gallery-item:first-child {
  padding-left: 0;
}

.video-gallery-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.video-gallery-link {
  color: #111;
  display: block;
  width: 100%;
}

.video-gallery-link figure {
  aspect-ratio: 232 / 155;
  border-radius: 3px;
  margin: 0 0 11px;
  overflow: hidden;
  position: relative;
}

.video-gallery-link img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.video-gallery-link:hover img {
  transform: scale(1.04);
}

.video-play-icon {
  align-items: center;
  background: rgb(0 0 0 / 40%);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: 10px;
  color: #fff;
  display: flex;
  height: 24px;
  justify-content: center;
  position: absolute;
  right: 10px;
  width: 24px;
}

.video-play-icon i {
  font-size: 0.68rem;
  margin-left: 2px;
}

.video-gallery-link h3 {
  color: #111;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

.video-gallery-link:hover h3 {
  color: var(--primary-color);
}

.featured-school-item {
      border: 1px solid #f2f2f2;
    border-radius: 0.3rem;
}
.featured-school-item hr {
  border-top: 1px solid #f2f2f2;
  margin-bottom: 0.3rem;
}
.featured-school-item figure img {
  border-radius: 0.3rem 0.3rem 0 0;   
  transition: all 0.5s;
  opacity: 1;
}
.featured-school-item figure img:hover {
  transfrom: scale(1.02);
  border-radius: 0.5rem 0.5rem 0 0;  
  opacity: 0.9;
}

.featured-school-content {
  padding: 0 1rem;
}
.featured-school-item figure {
  margin: 0;
}

.featured-school-content h3 {
  font-size: 1rem;
  color: var(--primary-color)
}
 

.featured-school-content h3:hover {
  color: var(--secondary-color)
}

.featured-school-content p.board {
  background-color: #cdfae3;
  margin-top: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 0.8rem;
  font-size: 0.8rem;
  width: fit-content;
}

.featured-school-item p{
  font-size: 0.8rem;
}

.featured-schools-slider.owl-carousel .owl-nav button.owl-next {
  right: -5rem;
}
.featured-schools-slider.owl-carousel .owl-nav button.owl-prev {
  left: -5rem;
}

.about-us-section h1 {
  font-weight: 300;
  margin-bottom: 1em;
  color: var(--primary-color);
}

section.services-icon {
  background: var(--primary-light-color);
  top: -1rem;
}

.services-icon-slide {
  text-align: center;
}
.services-icon-slide h3 {
  font-weight: 500;
}
.services-icon-slide a {
  color: #fff;
  font-size: 1.2rem;
}
.services-icon-slide a:hover {
  color: var(--secondary-color);
}

.admissions-card {
    background: #fff;
    border-radius: 0.3rem;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
    margin: 40px auto;
    border: 1px solid #f2f2f2;
  }

  .admissions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    background: #fafbfd;
    padding: 1rem .5rem;
    border-bottom: 1px solid #f2f2f2;
  }

  .admissions-title {
    font-size: calc(0.3rem + 1vw);
    font-weight: 500;
    margin-bottom: 0.5em;
    position: relative;
    color: var(--primary-color);
    margin: 0;
  }

  .admissions-viewall {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--admissions-blue);
    text-decoration: none;
    white-space: nowrap;
  }

  .admissions-viewall:hover {
    text-decoration: underline;
    color: var(--admissions-blue);
  }

  .admissions-list {
    margin: 0;
    padding: 0.5rem 1rem;
    list-style: none;
  }

  .admissions-list li {
    border-bottom: 1px solid #f2f2f2;
  }

  .admissions-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
   
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s ease;
    border-radius: 10px;
  }

  .admissions-list li:last-child {
    border-bottom: none;
  }

  .admissions-item:hover {
    background-color: #fafbfc;
  }

  .admissions-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .admissions-body {
    flex: 1;
    min-width: 0;
  }

  .admissions-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 2px 0;
  }

  .admissions-school {
    font-size: 0.82rem;
    color: var(--admissions-text-muted);
    margin: 0 0 8px 0;
  }

  .admissions-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #2c4837;
    background: #d3f4e2;
    padding: 3px 10px;
    border-radius: 999px;
  }

  .admissions-meta {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .admissions-apply-label {
    font-size: 0.72rem;
    color: var(--admissions-text-muted);
    margin: 0 0 2px 0;
  }

  .admissions-apply-date {
    font-size: 0.82rem;
    font-weight: 700;
    color: red;
    margin: 0;
  }

  .admissions-chevron {
    color: #c6cbd3;
    font-size: 0.85rem;
  }

  .admissions-footer {
    text-align: center;
    padding: 1rem 0
  }

  .admissions-footer-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
  }

  .admissions-footer-link:hover { 
    color: var(--secondary-color);
  }

.blog-section.article-section {
  background: #fff;
  padding: 2.6rem 0 3rem;
}

.article-section-title {
  color: #111;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 410px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.article-feature-card a {
  background: #111;
  border-radius: 7px;
  color: #fff;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.article-feature-card figure {
  aspect-ratio: 410 / 272;
  border-radius: 7px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.article-feature-card figure::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.82) 100%);
  border-radius: 7px;
  content: "";
  inset: 0;
  position: absolute;
}

.article-feature-card img {
  border-radius: 7px;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.article-feature-card h3 {
  bottom: 18px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  left: 20px;
  line-height: 1.32;
  margin: 0;
  position: absolute;
  right: 18px;
  z-index: 1;
}

.article-feature-card a:hover img {
  transform: scale(1.04);
}

.article-feature-card a:hover h3 {
  color: #fff;
}

.article-secondary-card {
  margin-top: 20px;
}

.article-inline-link {
  align-items: center;
  color: #555;
  display: grid;
  gap: 16px;
  grid-template-columns: 104px minmax(0, 1fr);
  width: 100%;
}

.article-inline-link img {
  border-radius: 7px;
  height: 70px;
  object-fit: cover;
  width: 104px;
}
.article-inline-link p {
  font-size: 0.75rem;
}

.article-inline-link h3 {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.article-secondary-card .article-inline-link h3 {
  font-weight: 700;
}

.article-list-column {
  display: flex;
  flex-direction: column;
}

.article-list-card {
  border-bottom: 1px solid #d9d9d9;
  margin: 0 0 14px;
  padding: 0 0 13px;
}

.article-list-card:last-child {
  margin-bottom: 0;
}

.article-list-card .article-inline-link {
  align-items: start;
}

.article-list-card .article-inline-link img {
  height: 68px;
}

.article-list-card .article-inline-link h3 {
  font-weight: 500;
}

.article-inline-link:hover h3 {
  color: var(--primary-color);
}

  .home-banner img{
    transform: scale(1);
    transition: all 0.5s;
  }
   .home-banner img:hover{
    transform: scale(1.02);
    transition: all 0.5s;
  }
section.footer-about {
  background-color: #fff8ef;
  padding: 5rem 0;
}

.footer-about h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer-about h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem ;
}
.footer-about p {
  font-size: 0.9rem;
}

.footer-about p a {
  color:var(--primary-color)
}
.footer-about p a:hover {
  color: var(--secondary-color);
}


.faq-sec {
  background-color: #fff8ef;
  padding: 5em 0;
}
.faq-sec h3 {
  text-transform: uppercase;
}
.faq-sec h3 span {
  text-transform: capitalize;
  color: var(--secondary-color);
}

.accordion,
.accrodion-grp {
  padding: 1.3em 0.3em;
}

.accordion .card {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-left: none;
  border-right: none;
  background: transparent;
}
.accordion .card .card-header {
  border-radius: 0;
  margin-bottom: -1px;
  background-color: transparent;
  padding: 0.3em 0.4em;
}
.accordion .card .card-header h4 .btn {
  font-size: 1.15rem;
  color: #000;
  padding-left: 0;
  font-weight: 500;
  text-decoration: none;
}
.accordion .card .card-header h4 .btn::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 13px;
  color: var(--secondary-color);
  position: absolute;
  display: inline-block;
  width: 20px;
  top: 24px;
  content: "\f077";
  right: 0;
}
.accordion .card .card-header h4 .btn.collapsed {
  font-size: 1.15rem;
}
.accordion .card .card-header h4 .btn.collapsed::after {
  content: "\f078";
}
.accordion .card .card-body {
  font-size: 1rem;
}

.accrodion-grp .accrodion {
  margin: 1.5em 0;
  cursor: pointer;
}
.accrodion-grp .accrodion .accrodion-title h5 {
  font-size: 1.4rem;
  font-weight: 500;
}
.accrodion-grp .accrodion .accrodion-content .inner {
  font-size: 1.1rem;
}

.blog-inner-col {
  margin: 0.3em 0 1.5em;
}
.blog-inner-col .date {
  font-size: 0.9rem;
  margin-bottom: 1em;
}
.blog-inner-col .date span {
  font-size: 0.9rem;
  margin-right: 0.3em;
}
.blog-inner-col .date span a {
  color: #000;
}
.blog-inner-col .date span a:hover {
  color: var(--secondary-color);
}
.blog-inner-col .date span a i {
  margin-right: 0.2em;
}
.blog-inner-col h3 {
  margin-bottom: 0.6em;
}
.blog-inner-col h3 a {
  color: var(--primary-color);
  font-size: 1.6rem;
}
.blog-inner-col h3 a:hover {
  color: var(--secondary-color);
}
.blog-inner-col figure img {
  transform: scale(1);
  transition: all 0.7s;
}
.blog-inner-col figure img:hover {
  transform: scale(1.03);
}

.sidebar {
  /* For Safari */
  position: sticky;
  top: 20px;
  padding: 15px;
  border-radius: 5px;
}

section.contact-form-sec {
  padding: 4em 0;
  background: #fff7eb;
}
section.contact-form-sec p {
  font-size: 1.2rem;
  margin: 0.4em 0;
}
section.contact-form-sec h4 {
  color: var(--primary-color);
}
section.contact-form-sec .contact-details {
  margin-top: 1.4em;
}
section.contact-form-sec .contact-details li {
  font-size: 1.2rem;
  line-height: 2;
}
section.contact-form-sec .contact-details li a {
  font-size: 1.2rem;
  color: #000;
}
section.contact-form-sec .contact-details li a:hover {
  color: #f99c1c;
}
section.contact-form-sec input {
  height: 48px;
  border-radius: 0.4rem;
}

section.page-title-bar-sec {
  background-color: #e4e6ff;
}
section.page-title-bar-sec .breadcrumb {
  background: transparent;
  font-size: 1rem;
  justify-content: center;
}
section.page-title-bar-sec .breadcrumb a {
  color: var(--primary-color);
}
section.page-title-bar-sec .breadcrumb a:hover {
  color: #f99c1c;
}

.page-title-bar-sec.services h1 {
  color: var(--primary-color);
}

.service-inner-col h2,
.service-inner-col h3 {
  margin: 1em 0;
}
.service-inner-col a {
  font-size: 1.2rem;
  color: var(--primary-color);
}
.service-inner-col a:hover {
  color: #f99c1c;
}
.service-inner-col .wp-block-list {
  font-size: 1.2rem;
  padding-left: 2em;
  margin-bottom: 1.5em;
}
.service-inner-col .wp-block-list li {
  line-height: 1.8;
  list-style-type: disc;
}

.featured-post h4 {
  font-size: 2rem;
}
.featured-post .featured-post-title {
  font-size: 1.4rem;
}
.featured-post .featured-post-title a {
  color: #000;
}
.featured-post .featured-post-title a:hover {
  color: #f99c1c;
}
.featured-post .date {
  font-size: 0.8rem;
}

.call-and-whatsapp-bar {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}
.call-and-whatsapp-bar .call-icon {
  background-color: var(--primary-color);
  padding: 0.4em 2em;
  border-radius: 1.3rem;
  font-size: 1.2rem;
}
.call-and-whatsapp-bar .call-icon:hover {
  background-color: #f99c1c;
}
.call-and-whatsapp-bar .whatsapp-icon {
  background-color: #00ad35;
  color: #fff;
  padding: 0.4em 2em;
  border-radius: 1.3rem;
  font-size: 1.2rem;
}
.call-and-whatsapp-bar .whatsapp-icon:hover {
  background-color: #f99c1c;
}

section.service-call-to-action {
  background-color: #f99c1c;
}
section.service-call-to-action h3 {
  margin-bottom: 0.3em;
  font-size: 2.2rem;
}
section.service-call-to-action .btn-cta {
  font-size: 2rem;
  text-transform: uppercase;
}

.service-inner-sec .inquiry-form {
  margin: 1.5em 0;
  background-color: #bbffd9;
  padding: 1em 1.5em;
  border-radius: 1.3rem;
}
.service-inner-sec .inquiry-form h3 {
  margin: 0.4em 0;
}
.service-inner-sec .other-services {
  margin: 1.5em 0;
}
.service-inner-sec .other-services ul {
  padding-left: 0.8em;
}
.service-inner-sec .other-services ul li {
  line-height: 2;
  font-weight: 500;
}
.service-inner-sec .other-services ul li a {
  color: var(--primary-color);
}
.service-inner-sec .other-services ul li a:hover {
  color: #f99c1c;
}

section.services-cta {
  text-align: center;
  background-color: #bbffd9;
}
section.services-cta h3 {
  text-align: center;
}
section.services-cta p {
  text-align: center;
}
section.services-cta p a {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1.4rem;
}
section.services-cta p a:hover {
  color: #f99c1c;
}

section.quick-links-sec {
  background-color: #fff7eb;
}

.quick-links-wrapper {
  display: grid;
  margin: 1.5em 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.quick-links-wrapper li a {
  color: #000;
}
.quick-links-wrapper li a:hover {
  color: var(--primary-color);
}

footer {
  padding: 3rem 1rem 0;
  background-color: #f0f7ff;
  color: #474d55;
}

footer p {
  font-size: 0.9rem;
}
footer .footer-top h4 {
  font-weight: 600;
  text-transform: none;
  font-size: 1rem;
  margin-bottom: 0.7em;
  color: var(--primary-color)
}
footer .footer-top .footer-logo {
  margin: 0 0 2.3em 0;
}
.footer-top {
  margin-bottom: 1.5rem;
}
footer .footer-top ul li {
  line-height: 2;
  font-size: 1rem !important;
}
footer .footer-top ul li a {
  color: #474d55;
  font-size: 1rem !important;
}
footer .footer-top ul li a:hover {
  color: var(--primary-color);
}
footer .footer-top .social-media-icon {
  margin: 2em 0;
  display: flex;
  gap: 2em;
}
footer .footer-top .social-media-icon a {
  color: #474d55
}
footer .footer-top .social-media-icon a:hover {
  color: var(--primary-color);
}
footer .footer-top .social-media-icon a i {
  font-size: 2rem;
}
footer .footer-bottom {
  border-top: 1px solid var(--primary-color);
  padding: 1.5em 0;
}
footer .footer-bottom ul.footer-menu {
  display: flex;
  gap: 20px;
  float: right;
}
.footer-bottom a {
  color: var(--primary-color);
}
.footer-bottom a:hover {
  color: #f99c1c;
}

.get-started {
  position: fixed;
  bottom: 0;
  z-index: 99;
  width: -webkit-fill-available;
  padding: 0 2em;
}
.get-started .main-btn-static {
  width: 100%;
  background-color: var(--primary-color);
  text-align: center;
  padding: 0.3em 1em;
}
.get-started .main-btn-static .btn-important {
  width: 100%;
}

.chat-icon {
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  text-align: center;
  position: fixed;
  right: 3rem;
  bottom: 6rem;
  z-index: 20;
  transform: translateY(10rem);
}
.chat-icon .hero-scroll-icon {
  font-size: 1.6rem;
}
.chat-icon .hero-scroll-icon svg {
  width: 40px;
}

.chat-icon.show {
  transform: translateY(0);
}

.hero-scroll-wrapper {
  position: absolute;
  right: 7.5rem;
  bottom: -2rem;
}

.hero-scroll {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  position: relative;
  background-color: #35d766;
  border: 1px solid #7dffa5;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  display: inline-block;
  margin-left: 0.5rem;
}
.hero-scroll:hover {
  box-shadow: 0 0 0.7rem 0.1rem #73ec98;
}
.hero-scroll:hover .fa:first-child {
  transform: translateY(-1rem);
  opacity: 1;
}
.hero-scroll .hero-scroll-icon {
  position: absolute;
  top: 47%;
  transform: translateY(-50%) !important;
  text-decoration: none;
  color: #ecfff1;
  font-size: 2rem;
  overflow: hidden;
  left: 0;
  right: 0;
}
.hero-scroll .hero-scroll-icon .fa {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  display: block;
  transform: translateY(0) !important;
  opacity: 1 !important;
  font-size: 1em;
}
.hero-scroll:last-child {
  opacity: 1;
  transform: translateY(-1.5rem);
}

.chat-notification {
  background-color: var(--primary-color);
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  top: 3px;
  right: 0;
}

.hero-scroll:hover .fa:last-child {
  transform: translateY(-3rem);
  opacity: 1;
}

.get-started {
  position: fixed;
  bottom: 1em;
  z-index: 99;
  width: -webkit-fill-available;
  padding: 1em 2em;
}
.get-started .main-btn-static .btn-important {
  width: 100%;
}
.get-started .main-btn-static .get-started.hide {
  display: none;
}

.small-width {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.contact-mail .conatct-info {
  display: inline-grid;
  gap: 10px;
  align-items: center;
  background: #bbffd9;
  border-radius: 1.3em;
  color: #191d51;
  padding: 0.5em 0;
}
.contact-mail .conatct-info a {
  color: var(--primary-color);
}
.contact-mail .conatct-info p {
  margin: 0;
}

.mobile-display {
  display: none;
}

.desktop-display {
  display: block;
}/*# sourceMappingURL=style.css.map */


/* Landig Page */

.school-profile-header h1 {
  text-align: center;
}
.school-directory h1 {
  font-size: 1.6rem;
  text-align: center;
}

.school-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0.5rem 0 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e3e8e5;
  border-bottom: 1px solid #e3e8e5;
}

.school-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0.5rem 0.8rem;
  border-right: 1px solid #e3e8e5;
}

.school-fact:last-child {
  border-right: 0;
}

.school-fact > i {
  flex: 0 0 24px;
  color: #198754;
  font-size: 20px;
  text-align: center;
}

.school-fact span,
.school-fact strong {
  display: block;
}

.school-fact span {
  color: #59635d;
  font-size: 12px;
  line-height: 1.3;
}

.school-fact strong {
  margin-top: 4px;
  color: #202820;
  font-size: 14px;
  line-height: 1.3;
}

.school-maincontent h2 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.school-maincontent p {
  font-size: 1rem !important;
  font-weight: 400;
}

.school-content-tabs {
  margin-top: 0;
}

.school-tab-list {
  display: flex;
  gap: 26px;
  margin-bottom: 28px;
  border-bottom: 1px solid #dfe5e1;
}

.school-tab {
  position: relative;
  padding: 0 0 12px;
  border: 0;
  color: #69736d;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.school-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: transparent;
  content: '';
}

.school-tab:hover,
.school-tab.is-active {
  color: #198754;
}

.school-tab.is-active::after {
  background: #198754;
}

.school-tab-panel[hidden] {
  display: none;
}

.school-tab-panel > h2 {
  margin-bottom: 18px;
}

.school-details-2 {
  border: 1px solid #e3e8e5;
  border-radius: 1.3em;
  padding: 1em;
}

.school-details-2 h2 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.school-details-2 dt {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color)
}

.school-details-2 dd {
  font-size: 0.9rem;
}

.school-details-2 a {
  color: var(--primary-color); 
}

@media (max-width: 767px) {
  .school-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .school-fact:nth-child(2) {
    border-right: 0;
  }

  .school-fact:nth-child(-n + 2) {
    border-bottom: 1px solid #e3e8e5;
  }
}

.school-photo-gallery {
  margin-top: 36px;
}

.school-article-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 24px;
  overflow: hidden;
  background: #000;
}
.school-article-single a {
  color: var(--primary-color);
  text-decoration: underline;
}

.school-article-card h3 a {
  color: var(--primary-color);
}

.school-article-card h3 a:hover {
  color: var(--secondary-color);
}
.school-article-video iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  border: 0;
}

.school-article-type-icon {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  color: #198754;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  font-size: 18px;
  line-height: 1;
}

.school-article-image {
  position: relative;
  display: block;
}

.school-photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.school-photo-gallery-grid a {
  display: block;
  overflow: hidden;
  background: #f2f5f3;
}

.school-photo-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.school-location-archive {
  padding: 40px 0 60px;
}

.school-archive-filters {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 30px;
  padding: 18px;
  border: 1px solid #e2e5ea;
  background: #f8faf9;
}

.category-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.category-article-card {
  min-width: 0;
}

.category-article-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef1ef;
}

.category-article-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-article-body {
  padding-top: 8px;
}

.category-article-date {
  margin: 0 0 5px;
  color: #6a746d;
  font-size: 12px;
}

.category-article-body h2 {
  margin: 0 0 8px; 
  font-size: 1.2rem;
  line-height: 1.25;
}

.category-article-body h2 a {
  color: var(--primary-color)
}
.category-article-body h2 a:hover {
  color: var(--secondary-color);
}

.category-article-body > p:last-child {
  margin: 0;
  color: #5c645e;
  font-size: 14px;
  line-height: 1.5;
}

.category-pagination {
  margin-top: 42px;
}

@media (max-width: 767px) {
  .category-article-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .category-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.school-archive-filters div {
  flex: 1 1 180px;
}

.school-archive-filters label {
  display: block;
  margin-bottom: 6px;
  color: #4f5c54;
  font-size: 13px;
  font-weight: 600;
}

.school-archive-filters select {
  width: 100%;
  min-height: 40px;
  padding: 6px 10px;
  border: 1px solid #cfd8d2;
  background: #fff;
}

.school-archive-filters button,
.school-filter-reset {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid #198754;
  color: #fff;
  background: #198754;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
}

.school-filter-reset {
  color: #198754;
  background: #fff;
}

.school-location-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #59635d;
  font-size: 14px;
}

.school-location-breadcrumbs a {
  color: #198754;
}

.school-location-archive-header {
  margin-bottom: 0.8rem;
}

.school-location-archive-header p {
  margin-bottom: 6px;
  color: #198754;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.school-location-archive-header h1 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.school-location-children,
.school-location-schools {
  margin-top: 0.5rem;
  padding: 1rem 0;
}
.school-location-children h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.school-location-schools h2 {
  margin-bottom: 1.2rem;
}
.school-card h3{
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.school-card-featured {
  display: flex;
  min-height: 192px;
  border: 1px solid #e2e5ea;
  background: #fff;
  box-shadow: 0 2px 8px rgba(26, 39, 56, 0.08);
}

.school-card-media {
  position: relative;
  flex: 0 0 245px;
  background: #f0f2f4;
}

.school-card-media > a,
.school-card-image {
  display: block;
  width: 100%;
  height: 100%;
}

.school-card-image {
  object-fit: cover;
}

.school-card-image-empty {
  min-height: 180px;
  background: linear-gradient(135deg, #edf2ef, #d9e4dc);
}

.school-card-status {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 12px;
  color: #fff;
  background: #198754;
  font-size: 12px;
  font-weight: 600;
}

.school-card-main {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 16px 18px 0;
}

.school-card-heading h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.school-card-heading h2 a {
  color: #202d63;
}

.school-card-area {
  margin: 5px 0 0;
  color: #5d6572;
  font-size: 13px;
}

.school-card-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: auto;
  padding: 16px 0 14px;
}

.school-card-facts span,
.school-card-facts strong {
  display: block;
}

.school-card-facts span {
  color: #68717d;
  font-size: 12px;
}

.school-card-facts strong {
  margin-top: 4px;
  color: #202d63;
  font-size: 16px;
}

.school-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 12px;
  color: #58616d;
  font-size: 13px;
}

.school-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.school-card-meta i {
  color: #dc3545;
}

.school-card-actions {
  display: flex;
  justify-content: flex-end;
  margin: 0 -18px;
  padding: 9px 18px;
  border-top: 1px solid #edf0f2;
}

.school-card-button {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  font-size: 13px;
}

.school-card-button:hover {
  color: #fff;
  background: #0d6efd;
}

@media (max-width: 767px) {
  .school-card-featured {
    display: block;
  }

  .school-card-media {
    height: 190px;
  }

  .school-card-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.school-location-archive-wrapper {
  padding: 0.8rem 0;
  background-color: var(--secondary-light-color);
}
.school-location-children {
  background-color: var(--primary-light-color);
  padding: 1rem 0;
  margin: 0 !important;
}

.school-location-child-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.school-location-child-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid #e3e8e5;
  color: #202820;
  background: #fff;
}

.school-location-child-list a:hover {
  border-color: #198754;
  color: #198754;
}

.school-location-child-list img {
  object-fit: contain;
}

@media (max-width: 767px) {
  .school-photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .school-location-child-list {
    grid-template-columns: 1fr;
  }
}