* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #11182d;
  background: #fff;
}

/* TOP BAR */
.top-bar {
  min-height: 52px;
  background: #2d7e59;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.top-left { text-align: left; }
.top-left span { margin: 0 7px; }

.top-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.top-right a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.top-right i { margin-right: 7px; }
.top-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.3);
}

/* =====================================================
   MAIN NAVBAR
===================================================== */

.main-navbar {

    width: 100%;

    min-height: 115px;

    padding: 0;

    background: #ffffff;

    border-bottom: 3px solid #ad0000;

    position: relative;

    z-index: 9999;

    transition: all .3s ease;
}


.main-navbar .container {

    max-width: 1200px;

    min-height: 115px;

    display: flex;

    align-items: center;
}


/* =====================================================
   LOGO
===================================================== */

.navbar-brand {

    display: flex;

    align-items: center;

    padding: 0;

    margin: 0;
}


.navbar-brand img {

    display: block;

    width: 305px;

    height: auto;

}


/* =====================================================
   MENU
===================================================== */

.navbar-collapse {

    display: block;

    width: auto;

    margin-left: auto;
}


.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.nav-item {

    position: relative;
}


.nav-link {

    display: block;

    padding: 13px 10px !important;

    color: #10172c !important;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: color .2s ease;
}


.nav-link:hover,
.nav-link.active1 {

    color: #087d5d !important;
}


/* =====================================================
   DROPDOWN ARROW
===================================================== */

.custom-dropdown-toggle::after {

    content: "";

    display: inline-block;

    margin-left: 7px;

    vertical-align: middle;

    border-top: 4px solid currentColor;

    border-right: 4px solid transparent;

    border-left: 4px solid transparent;

    transition: transform .2s ease;
}


/* =====================================================
   DESKTOP DROPDOWN
===================================================== */

.custom-dropdown-menu {

    position: absolute;

    top: calc(100% + 1px);

    left: 0;

    min-width: 230px;

    margin: 0;

    padding: 6px 0;

    list-style: none;

    background: #ffffff;

    border-top: 3px solid #ad0000;

    border-radius: 0 0 5px 5px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);

    visibility: hidden;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 10000;
}

/* =========================================
   DESKTOP NAVBAR FIX
========================================= */

@media (min-width: 992px) {

    .main-navbar .container {
        display: flex;
        align-items: center;
    }

    .main-navbar .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        width: auto;
        margin-left: auto;
    }

    .main-navbar .navbar-nav {
        display: flex !important;

        /* IMPORTANT */
        flex-direction: row !important;

        align-items: center;

        width: auto;

        margin-left: auto;
        margin-right: 0;

        gap: 2px;
    }

    .main-navbar .nav-item {
        width: auto;
    }

    .main-navbar .nav-link {
        display: block;
        width: auto;
        white-space: nowrap;
    }

    /* Desktop par hamburger hide */
    .main-navbar .navbar-toggler {
        display: none !important;
    }

}
/* Desktop hover */

@media (min-width: 992px) {

    .custom-dropdown:hover
    .custom-dropdown-menu {

        visibility: visible;

        opacity: 1;

        transform: translateY(0);

    }

}


/* =====================================================
   DROPDOWN LINKS
===================================================== */

.custom-dropdown-menu li {

    margin: 0;

    padding: 0;
}


.custom-dropdown-menu li a {
        display: block;
        width: 100%;
        padding: 5px 18px;
        color: #10172c;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
        transition:
        color .2s ease,
        background .2s ease,
        padding-left .2s ease;
        }


.custom-dropdown-menu li a:hover {

    color: #ffffff;

    background: #2d7e59;

    padding-left: 23px;
}


/* =====================================================
   HAMBURGER BUTTON
===================================================== */

.navbar-toggler {

    display: none;

    width: 56px;

    height: 50px;

    padding: 0;

    margin-left: auto;

    background: #ffffff;

    border: 1px solid #dddddd !important;

    border-radius: 7px;

    outline: none !important;

    box-shadow: none !important;

    align-items: center;

    justify-content: center;

    cursor: pointer;
}


.navbar-toggler:focus,
.navbar-toggler:active {

    outline: none !important;

    box-shadow: none !important;
}


/* =====================================================
   HAMBURGER ICON
===================================================== */

.navbar-toggler-icon {

    position: relative;

    display: block;

    width: 26px;

    height: 2px;

    background: #333333;

    background-image: none !important;

    transition: background .25s ease;
}


.navbar-toggler-icon::before,
.navbar-toggler-icon::after {

    content: "";

    position: absolute;

    left: 0;

    width: 26px;

    height: 2px;

    background: #333333;

    transition:
        top .25s ease,
        transform .25s ease;
}


.navbar-toggler-icon::before {

    top: -8px;
}


.navbar-toggler-icon::after {

    top: 8px;
}


/* =====================================================
   OPEN = X
===================================================== */

.navbar-toggler.menu-open
.navbar-toggler-icon {

    background: transparent;
}


.navbar-toggler.menu-open
.navbar-toggler-icon::before {

    top: 0;

    transform: rotate(45deg);
}


.navbar-toggler.menu-open
.navbar-toggler-icon::after {

    top: 0;

    transform: rotate(-45deg);
}


/* =====================================================
   STICKY NAVBAR
===================================================== */

.main-navbar.sticky {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    background: #ffffff;

    box-shadow: 0 4px 18px rgba(0, 0, 0, .12);

    animation: stickyMenu .3s ease;
}


@keyframes stickyMenu {

    from {

        transform: translateY(-100%);

    }

    to {

        transform: translateY(0);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991.98px) {


    /* ---------------------------------------------
       TOP BAR
    --------------------------------------------- */

    .top-bar {

        min-height: 61px;

        font-size: 12px;
    }


    .top-bar-inner {

        min-height: 61px;

        flex-direction: column;

        justify-content: center;

        gap: 7px;

    }


    .contact-info {

        gap: 12px;

    }


    /* ---------------------------------------------
       NAVBAR
    --------------------------------------------- */

    .main-navbar {

        min-height: 82px;

        padding: 12px 0;

    }


    .main-navbar .container {

        min-height: 58px;

    }


    /* ---------------------------------------------
       LOGO
    --------------------------------------------- */

    .navbar-brand img {

        width: 240px;

        height: auto;

    }


    /* ---------------------------------------------
       TOGGLE
    --------------------------------------------- */

    .navbar-toggler {

        display: flex;

    }


    /* ---------------------------------------------
       MOBILE MENU
    --------------------------------------------- */

    .navbar-collapse {

        display: none;

        width: 100%;

        margin-left: 0;

        padding-top: 10px;

    }


    .navbar-collapse.menu-open {

        display: block;

    }


    .main-navbar .container {

        flex-wrap: wrap;

    }


    /* ---------------------------------------------
       MOBILE NAV
    --------------------------------------------- */

    .navbar-nav {

        width: 100%;

        display: block;

        margin: 0;

        padding: 0;

    }


    .nav-item {

        width: 100%;

    }


    .nav-link {

        width: 100%;

        padding: 11px 0 !important;

        font-size: 14px;

    }


    /* ---------------------------------------------
       MOBILE DROPDOWN
    --------------------------------------------- */

    .custom-dropdown-menu {

        position: static;

        display: none;

        width: 100%;

        min-width: 0;

        margin: 0;

        padding: 5px 0 5px 15px;

        background: #f7f7f7;

        border: 0;

        border-left: 3px solid #ad0000;

        border-radius: 0;

        box-shadow: none;

        visibility: visible;

        opacity: 1;

        transform: none;

    }


    .custom-dropdown.open
    .custom-dropdown-menu {

        display: block;

    }


    /* ---------------------------------------------
       MOBILE ARROW
    --------------------------------------------- */

    .custom-dropdown-toggle::after {

        float: right;

        margin-top: 7px;

        margin-right: 5px;

    }


    .custom-dropdown.open
    .custom-dropdown-toggle::after {

        transform: rotate(180deg);

    }


    /* ---------------------------------------------
       MOBILE SUBMENU LINKS
    --------------------------------------------- */

    .custom-dropdown-menu li a {

        padding: 10px 15px;

        font-size: 14px;

    }


    .custom-dropdown-menu li a:hover {

        padding-left: 20px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {


    .top-bar {

        min-height: 61px;

    }


    .top-bar-inner {

        padding: 6px 0;

    }


    .school-info {

        font-size: 11px;

    }


    .contact-info {

        font-size: 11px;

        gap: 8px;

    }


    .main-navbar {

        min-height: 75px;

        padding: 10px 0;

    }


    .main-navbar .container {

        min-height: 55px;

    }


    .navbar-brand img {

        width: 205px;

    }


    .navbar-toggler {

        width: 54px;

        height: 48px;

    }


    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {

        width: 25px;

    }


    .navbar-collapse {

        padding-top: 10px;

    }

}

/* =========================================
   STICKY NAVBAR ON SCROLL
========================================= */

.main-navbar {
    width: 100%;
    background: #fff;
    z-index: 9999;

    transition: all 0.3s ease;
}


/* Scroll hone ke baad */

.main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);

    animation: stickyMenu 0.3s ease;
}


/* Smooth animation */

@keyframes stickyMenu {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}
/* ABOUT DROPDOWN */
.dropdown-menu {
  border: 0;
  border-top: 3px solid #ad0909;
  border-radius: 0 0 5px 5px;
  padding: 6px 0;
  min-width: 215px;
  box-shadow: 0 7px 20px rgba(0,0,0,.15);
}

.dropdown-item {
  padding: 10px 17px;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-item:hover {
  color: #fff;
  background: #2d7e59;
}

/* RED MARQUEE */
.marquee-bar {
  height: 63px;
  background: #ad0808;
  color: #ffd400;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-window {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 85px;
  animation: marqueeMove 24s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}

@keyframes marqueeMove {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* HERO / BOOTSTRAP CAROUSEL */
.hero-section {
  width: 100%;
  overflow: hidden;
  background: #111;
}

.carousel-item {
  position: relative;
  height: calc(100vh - 230px);
  min-height: 540px;
  max-height: 760px;
  background: #111;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
  z-index: 1;
}

.hero-caption {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-bottom: 15px;
}

.welcome-small {
  font-family: "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-caption h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 400;
  line-height: .94;
  margin: 0;
}

.hero-caption p {
  font-size: 16px;
  letter-spacing: .4px;
  margin-top: 22px;
}

/* ARROWS */
.custom-control {
  width: 100px;
  opacity: 1;
}

.slider-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  transition: .25s ease;
}

.custom-control:hover .slider-circle {
  background: rgba(255,255,255,.48);
}

/* DOTS */
.carousel-indicators {
  z-index: 5;
  bottom: 18px;
}

.carousel-indicators button {
  width: 28px;
  height: 3px;
}

/* FLOATING BUTTONS */
.floating-tools {
  position: fixed;
  right: 22px;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,.94);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 0 12px rgba(0,0,0,.12);
}

.floating-tools button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #0083ca;
  font-size: 17px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .navbar-brand img { width: 260px; }
  .nav-link {
    font-size: 13px;
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
}

@media (max-width: 991.98px) {
  .top-bar { padding: 9px 0; }
  .top-left { text-align: center; margin-bottom: 7px; }
  .top-right { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .top-divider { display: none; }

  .main-navbar {
    min-height: 82px;
    padding: 12px 0;
  }

  .navbar-brand img { width: 240px; }

  .navbar-collapse { padding-top: 10px; }

  .nav-link {
    padding: 10px 0 !important;
  }

  .dropdown-menu {
    box-shadow: none;
    border-top: 2px solid #ad0909;
  }

  .marquee-bar { height: 55px; }
  .marquee-track span { font-size: 21px; }

  .carousel-item {
    height: 600px;
  }
}

@media (max-width: 575.98px) {
  .top-bar { font-size: 12px; }
  .navbar-brand img { width: 205px; }

  .marquee-bar { height: 48px; }
  .marquee-track { gap: 50px; }
  .marquee-track span { font-size: 18px; }

  .carousel-item {
    height: 70vh;
    min-height: 470px;
  }

  .hero-caption p {
    font-size: 13px;
    margin-top: 15px;
  }

  .slider-circle {
    width: 45px;
    height: 45px;
    font-size: 21px;
  }

  .custom-control { width: 70px; }

  .floating-tools { right: 10px; }
}



/* Main section */
.about-section {
  position: relative;
  /* min-height: 645px; */
  padding: 48px 0 80px;
  overflow: hidden;
  background: #fff;
}

/* Keep content width and position close to reference */
.about-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

/* Left side */
.about-content {
  padding-top: 2px;
  padding-right: 45px;
}

.about-label {
  color: #087d5d;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: .2px;
  font-family: "Times New Roman", serif;
}

.about-content h1 {
  margin: 0 0 42px;
  color: #07132b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
}

.about-content p {
  max-width: 510px;
  margin: 0;
  color: #727887;
  font-size: 16px;
  line-height: 1.74;
  font-weight: 400;
  letter-spacing: .05px;
}

/* Right image */
.about-image-wrap {
  padding-left: 14px;
  padding-top: 0;
}

.about-image {
  width: 100%;
  max-width: 525px;
  height: 295px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-left: auto;
}

/* Very light decorative botanical shape */
.about-decoration {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 285px;
  height: 300px;
  opacity: .13;
  pointer-events: none;
}

.about-decoration::before,
.about-decoration::after {
  content: "";
  position: absolute;
  border: 2px solid #7db7a3;
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 0 0;
  transform: rotate(20deg);
}

.about-decoration::before {
  width: 175px;
  height: 250px;
  right: 5px;
  bottom: 0;
}

.about-decoration::after {
  width: 125px;
  height: 190px;
  right: 80px;
  bottom: 55px;
  transform: rotate(-12deg);
}

/* Decorative leaf strokes */
.about-section::after {
  
  position: absolute;
  right: 35px;
  bottom: 35px;
  color: #72ad97;
  opacity: .17;
  font-size: 220px;
  line-height: .7;
  transform: rotate(-20deg);
  font-family: Georgia, serif;
}

/* Responsive */
@media (max-width: 1199px) {
  .about-container {
    max-width: 1000px;
  }

  .about-content h1 {
    font-size: 45px;
  }

  .about-content {
    padding-right: 25px;
  }

  .about-image {
    max-width: 500px;
  }
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 55px 0 90px;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 45px;
  }

  .about-content p {
    max-width: 100%;
  }

  .about-image-wrap {
    padding-left: 0;
  }

  .about-image {
    max-width: 100%;
    height: auto;
    max-height: 420px;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 40px 0 70px;
  }

  .about-label {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .about-content h1 {
    font-size: 37px;
    margin-bottom: 28px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-image {
    height: 230px;
    object-fit: cover;
  }

  .about-section::after {
    font-size: 140px;
    right: 5px;
    bottom: 10px;
  }
}


/* =========================================
   HIGHLIGHTING FEATURES
========================================= */

.features-section {
    position: relative;
    min-height: 690px;
    padding: 42px 0 70px;
    background: #2090ed;
    overflow: hidden;
}

.features-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}


/* HEADING */

.features-heading {
    margin-bottom: 45px;
}

.features-heading h2 {
    display: inline-block;
    margin: 0;
    padding: 2px 8px 5px;
    color: #ffffff;
    /* background: rgba(255,255,255,.35); */
    font-family: Georgia, "Times New Roman", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
}


/* =========================================
   STAR AREA
========================================= */

.star-area {
    position: relative;
    height: 490px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* MAIN STAR */

.main-star {
    position: relative;
    width: 390px;
    height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffc400;

    font-size: 420px;
    line-height: 1;
    font-family: Arial, sans-serif;

    filter: drop-shadow(8px 8px 5px rgba(0,0,0,.04));

    background: linear-gradient(
        135deg,
        #fff22d 0%,
        #ffd000 45%,
        #ffb600 100%
    );

    clip-path: polygon(
        50% 0%,
        61% 29%,
        94% 35%,
        70% 57%,
        76% 91%,
        50% 73%,
        23% 91%,
        29% 57%,
        5% 35%,
        39% 29%
    );

    text-indent: -9999px;
}


/* STAR SHINE */

.main-star:after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: 12px;
    left: 70px;

    background: rgba(255,255,255,.12);

    border-radius: 50%;
}


/* SMALL STARS */

.small-star {
    position: absolute;
    color: #fff12c;
    font-size: 48px;
    line-height: 1;
    z-index: 3;
}

.star-one {
    top: 35px;
    left: 125px;
    font-size: 85px;
}

.star-two {
    top: 275px;
    right: 85px;
    font-size: 75px;
}

.star-three {
    bottom: 35px;
    left: 315px;
    font-size: 42px;
}

.star-four {
    top: 320px;
    left: 75px;
    font-size: 34px;
}


/* =========================================
   FEATURES
========================================= */

.feature-list {
    position: relative;
    min-height: 460px;
}


/* COMMON BOX */

.feature-box {
    position: absolute;

    min-height: 61px;

    display: flex;
    align-items: center;

    border-radius: 13px;

    padding: 8px;

    box-shadow: 0 5px 15px rgba(0,0,0,.04);

    font-family: Arial, Helvetica, sans-serif;
}


/* WHITE BOX */

.feature-white {
    background: #fff;
    color: #9db3c2;
}


/* GREEN BOX */

.feature-green {
    background: #0cbe7d;
    color: #fff;
}


/* YELLOW BOX */

.feature-yellow {
    background: #ffba08;
    color: #fff;
}


/* ICON */

.feature-icon {
    width: 47px;
    min-width: 47px;
    height: 47px;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    margin-right: 10px;
}


.feature-icon.yellow {
    background: #ffbd0b;
    color: #fff;
}


.feature-icon.green-icon {
    background: #10bd7e;
    color: #fff;
}


.feature-icon.white-icon {
    background: #fff;
    color: #10bd7e;
}


/* TEXT */

.feature-text {
    display: flex;
    flex-direction: column;

    font-size: 13px;
    line-height: 1.15;
}

.feature-text span {
    color: #9bb1c0;
}

.feature-text small {
    font-size: 12px;
    color: #9bb1c0;
}

.feature-green .feature-text span,
.feature-green .feature-text strong,
.feature-yellow .feature-text strong,
.feature-yellow .feature-text small {
    color: #fff;
}

.feature-text strong {
    font-weight: 700;
}


/* =========================================
   INDIVIDUAL POSITIONS
========================================= */

.feature-one {
    width: 260px;
    top: 0;
    left: 0;
}

.feature-two {
    width: 198px;
    top: 0;
    right: 0;
}

.feature-three {
    width: 165px;
    top: 77px;
    right: 59px;
}

.feature-four {
    width: 253px;
    top: 146px;
    left: 63px;
}

.feature-five {
    width: 235px;
    top: 220px;
    left: 0;
}


/* =========================================
   DECORATIVE RIGHT SIDE
========================================= */

.features-section:after {
   

    position: absolute;
    right: -5px;
    bottom: -10px;

    color: #126f8d;
    opacity: .22;

    font-family: Georgia, serif;
    font-size: 260px;

    transform: rotate(-15deg);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .features-section {
        padding: 45px 0 80px;
    }

    .features-heading {
        text-align: center;
        margin-bottom: 25px;
    }

    .features-heading h2 {
        font-size: 42px;
    }

    .star-area {
        height: 430px;
        margin-bottom: 25px;
    }

    .main-star {
        width: 330px;
        height: 330px;
    }

    .feature-list {
        min-height: 400px;
        max-width: 520px;
        margin: auto;
    }

    .feature-one {
        left: 0;
    }

    .feature-two {
        right: 0;
    }

    .feature-three {
        right: 50px;
    }
}


@media (max-width: 575px) {

    .features-section {
        min-height: auto;
        padding: 35px 0 70px;
    }

    .features-heading h2 {
        font-size: 32px;
    }

    .star-area {
        height: 330px;
    }

    .main-star {
        width: 245px;
        height: 245px;
    }

    .star-one {
        top: 5px;
        left: 20px;
        font-size: 55px;
    }

    .star-two {
        top: 190px;
        right: 25px;
        font-size: 50px;
    }

    .star-three {
        bottom: 5px;
        left: 205px;
        font-size: 30px;
    }

    .star-four {
        top: 210px;
        left: 25px;
        font-size: 25px;
    }

    .feature-list {
        min-height: 390px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .feature-box {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;

        width: 100%;
        max-width: 100%;
    }

    .features-section:after {
        font-size: 150px;
    }
}
/* =====================================
   VISION & MISSION SECTION
===================================== */

.vision-section {
    position: relative;
    background: #fff;
    padding: 20px 0 48px;
    overflow: hidden;
}

.vision-section .container {
    max-width: 1200px;
}


/* =====================================
   TOP CONTENT
===================================== */

.vision-row {
    margin-bottom: 55px;
}


/* Image */

.vision-image {
    width: 100%;
    padding-right: 18px;
}

.vision-image img {
    width: 100%;
    max-width: 550px;
    height: 310px;
    object-fit: cover;
    display: block;
}


/* Content */

.vision-content {
    padding-left: 0;
}

.school-name {
    color: #087d5d;
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 27px;
}

.vision-content h2 {
    color: #07132b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 38px;
}

.vision-content p {
    max-width: 560px;
    color: #737985;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


/* =====================================
   RATING CARDS
===================================== */

.rating-row {
    padding: 0 15px;
}

.rating-card {
    min-height: 100px;
    background: #fff;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(32, 91, 110, .10);

    display: flex;
    align-items: center;

    padding: 16px 32px;

    margin: 0 10px;

    transition: all .3s ease;
}

.rating-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 30px rgba(32, 91, 110, .15);
}


/* =====================================
   GOOGLE / FACEBOOK LOGO
===================================== */

.rating-logo {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 25px;
}


/* Google */

.google-logo {
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 600;

    background: conic-gradient(
        from -45deg,
        #4285f4 0 25%,
        #34a853 25% 50%,
        #fbbc05 50% 75%,
        #ea4335 75% 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Facebook */

.facebook-logo {
    background: #1877f2;
    color: #fff;

    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 43px;
    font-weight: bold;

    line-height: 1;
    padding-top: 7px;
}


/* =====================================
   RATING CONTENT
===================================== */

.rating-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating-title {
    color: #111;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 7px;
}

.rating-bottom {
    display: flex;
    align-items: center;
    gap: 22px;
}

.stars {
    color: #ff7800;
    font-size: 23px;
    letter-spacing: 0;
    line-height: 1;
}

.rating-number {
    color: #111;
    font-size: 17px;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1199px) {

    .vision-section .container {
        max-width: 1050px;
    }

    .vision-content h2 {
        font-size: 31px;
    }

    .rating-card {
        padding: 15px 20px;
    }

    .rating-logo {
        margin-right: 15px;
    }
}


@media (max-width: 991px) {

    .vision-section {
        padding: 50px 0;
    }

    .vision-row {
        margin-bottom: 40px;
    }

    .vision-image {
        padding-right: 0;
        margin-bottom: 35px;
    }

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

    .vision-content h2 {
        font-size: 34px;
    }

    .vision-content p {
        max-width: 100%;
    }

    .rating-card {
        margin: 10px 0;
    }
}


@media (max-width: 575px) {

    .vision-section {
        padding: 35px 0;
    }

    .school-name {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .vision-content h2 {
        font-size: 29px;
        margin-bottom: 25px;
    }

    .vision-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .rating-row {
        padding: 0 10px;
    }

    .rating-card {
        min-height: 90px;
        padding: 13px 20px;
    }

    .rating-logo {
        width: 43px;
        height: 43px;
        min-width: 43px;
        margin-right: 15px;
    }

    .google-logo {
        font-size: 37px;
    }

    .facebook-logo {
        font-size: 37px;
    }

    .rating-title {
        font-size: 17px;
    }

    .stars {
        font-size: 20px;
    }

    .rating-number {
        font-size: 15px;
    }

    .rating-bottom {
        gap: 15px;
    }
}
/* =========================================
   OUR CORE VALUES
========================================= */

.core-values-section {
    position: relative;
    padding: 45px 10px 74px;
    background: #ffb900;
    overflow: hidden;
}

.core-values-section .container-fluid {
    max-width: 1920px;
    margin: auto;
}


/* Heading */

.core-values-title {
    text-align: center;
    margin: 0 0 68px;

    color: #111;
    font-family: Georgia, "Times New Roman", serif;

    font-size: 52px;
    line-height: 1.1;
    font-weight: 400;
}


/* =========================================
   CARD
========================================= */

.value-card {
    position: relative;

    min-height: 283px;

    margin-top: 0;

    border-radius: 10px;

    color: #fff;

    text-align: center;

    padding: 140px 25px 15px;

    overflow: visible;
}


/* Card colors */

.value-green {
    background: #91cf43;
}

.value-purple {
    background: #b85ced;
}

.value-brown {
    background: #895407;
}

.value-red {
    background: #ff6467;
}


/* =========================================
   CIRCULAR IMAGE
========================================= */

.value-image {
    position: absolute;

    width: 148px;
    height: 148px;

    top: -19px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    overflow: hidden;

    border: 0;

    z-index: 3;
}

.value-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* =========================================
   CARD CONTENT
========================================= */

.value-content {
    position: relative;
    z-index: 2;
}

.value-content h3 {
    margin: 0 0 17px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    line-height: 1.15;

    font-weight: 400;
}

.value-content p {
    max-width: 420px;

    margin: 0 auto;

    color: #fff;

    font-size: 16px;
    line-height: 1.65;

    font-weight: 400;
}


/* =========================================
   DESKTOP SPACING
========================================= */

@media (min-width: 1200px) {

    .core-values-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .core-values-section .row {
        --bs-gutter-x: 20px;
    }

    .value-card {
        min-height: 283px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .core-values-title {
        font-size: 44px;
        margin-bottom: 60px;
    }

    .value-card {
        min-height: 300px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .core-values-section {
        padding: 35px 15px 60px;
    }

    .core-values-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .value-card {
        min-height: 300px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .value-image {
        width: 135px;
        height: 135px;
    }

    .value-content h3 {
        font-size: 27px;
    }

    .value-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* =========================================
   TOPPERS + NOTICE BOARD
========================================= */

.topper-notice-section {
    position: relative;
    background: #fff;
    padding: 76px 0 135px;

    /* Screenshot ki top/bottom line */
    border-top: 2px solid #ffbd00;
    border-bottom: 2px solid #2d7d59;
}

.topper-notice-section .container {
    max-width: 1150px;
}


/* =========================================
   COMMON BOX
========================================= */

.topper-box,
.notice-box {
    min-height: 117px;

    border-radius: 10px;

    padding: 17px 10px;

    color: #fff;
}


/* Toppers */

.topper-box {
    background: #92cf43;
}


/* Notice */

.notice-box {
    background: #ff6467;
}


/* =========================================
   HEADINGS
========================================= */

.topper-box h2,
.notice-box h2 {
    margin: 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    font-weight: 400;

    line-height: 1.2;
}


/* =========================================
   CLASS TEXT
========================================= */

.topper-box p {
    margin: 26px 0 0;

    color: #fff;

    font-size: 16px;
    font-weight: 400;
}


/* Notice content */

.notice-content {
    margin-top: 10px;
    color: #fff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .topper-notice-section {
        padding: 60px 0 100px;
    }

    .topper-notice-section .container {
        max-width: 900px;
    }
}


@media (max-width: 767px) {

    .topper-notice-section {
        padding: 45px 15px 80px;
    }

    .topper-box,
    .notice-box {
        min-height: 115px;
    }

    .topper-box h2,
    .notice-box h2 {
        font-size: 27px;
    }
}


@media (max-width: 575px) {

    .topper-notice-section {
        padding: 35px 15px 60px;
    }

    .topper-box,
    .notice-box {
        min-height: 110px;
        padding: 16px 12px;
    }

    .topper-box h2,
    .notice-box h2 {
        font-size: 25px;
    }

    .topper-box p {
        margin-top: 22px;
        font-size: 15px;
    }
}
/* =========================================
   FOOTER
========================================= */

.main-footer {
    position: relative;
    background: #174d38;
    color: #fff;
    overflow: hidden;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    position: relative;
    padding: 60px 0 45px;
    background: #174d38;
}

.footer-main:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 350px;
    height: 300px;

    opacity: .10;

    background:
        url("assets/footer-leaf-left.png")
        no-repeat left bottom / contain;

    pointer-events: none;
}

.footer-main:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;

    width: 300px;
    height: 320px;

    opacity: .10;

    background:
        url("assets/footer-leaf-right.png")
        no-repeat right bottom / contain;

    pointer-events: none;
}


/* Container */

.footer-main .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}


/* =========================================
   WIDGET
========================================= */

.footer-widget {
    position: relative;
    z-index: 3;
}

.footer-widget h3 {
    margin: 0 0 27px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 400;
}


/* =========================================
   ABOUT
========================================= */

.about-widget {
    padding-right: 70px;
}

.about-widget p {
    margin: 0;

    color: #fff;

    font-size: 16px;
    line-height: 1.62;

    max-width: 370px;
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;
    gap: 10px;

    margin-top: 32px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.15);

    border-radius: 4px;

    color: #fff;

    text-decoration: none;

    font-size: 19px;

    transition: .3s ease;
}

.footer-social a:hover {
    background: #2d805d;
    transform: translateY(-3px);
}


/* =========================================
   QUICK LINKS
========================================= */

.quick-widget {
    padding-left: 15px;
}

.quick-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-widget li {
    margin-bottom: 17px;
}

.quick-widget a {
    color: #fff;

    text-decoration: none;

    font-size: 16px;

    transition: .25s ease;
}

.quick-widget a:hover {
    color: #8ed05a;
    padding-left: 5px;
}


/* =========================================
   CONTACT
========================================= */

.contact-widget {
    padding-left: 10px;
}

.contact-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-widget li {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 23px;

    color: #fff;

    font-size: 16px;

    line-height: 1.45;
}

.contact-widget li i {
    min-width: 18px;
    margin-top: 3px;
}

.contact-widget a {
    color: #fff;
    text-decoration: none;
}

.contact-widget a:hover {
    color: #8ed05a;
}


/* =========================================
   BOTTOM COPYRIGHT
========================================= */

.footer-bottom {
    position: relative;

    background: rgba(0,0,0,.08);

    border-top: 1px solid rgba(255,255,255,.08);

    padding: 30px 0 32px;

    z-index: 5;
}

.footer-bottom .container {
    max-width: 1200px;
}

.footer-bottom p {
    margin: 0;

    color: #fff;

    font-size: 15px;
}


/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
    position: absolute;

    right: 30px;
    bottom: 50px;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2c8a62;

    color: #fff;

    text-decoration: none;

    font-size: 25px;

    z-index: 10;

    transition: .3s ease;
}

.back-to-top:hover {
    background: #3ba575;
    color: #fff;
    transform: translateY(-4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .footer-main {
        padding: 55px 0 40px;
    }

    .footer-widget {
        margin-bottom: 45px;
    }

    .about-widget {
        padding-right: 20px;
    }

    .quick-widget,
    .contact-widget {
        padding-left: 0;
    }

    .footer-widget h3 {
        font-size: 31px;
    }

    .back-to-top {
        right: 20px;
        bottom: 55px;
    }
}


@media (max-width: 767px) {

    .footer-main {
        padding: 45px 0 20px;
    }

    .footer-widget {
        margin-bottom: 38px;
    }

    .footer-widget h3 {
        font-size: 29px;
        margin-bottom: 20px;
    }

    .about-widget p,
    .quick-widget a,
    .contact-widget li {
        font-size: 15px;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        right: 15px;
        bottom: 70px;
        font-size: 21px;
    }
}

.topper-marquee {
    height: 30px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.topper-marquee p {
    position: absolute;
    width: 100%;
    margin: 0;

    color: #fff;
    font-size: 16px;

    animation: moveBottomTop 3s linear infinite;
}

@keyframes moveBottomTop {

    0% {
        transform: translateY(35px);
    }

    100% {
        transform: translateY(-35px);
    }

}

/* =========================================
   PAGE BANNER
========================================= */

.page-banner {
    position: relative;

    width: 100%;
    height: 420px;

    overflow: hidden;

    background: #216348;
}


/* =========================================
   BACKGROUND IMAGE
========================================= */

.page-banner-bg {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image: url("./assets/school-campus.jpg");

    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;

    z-index: 1;
}


/* =========================================
   GREEN OVERLAY
========================================= */

.page-banner-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(21, 102, 70, 0.78);

    z-index: 2;
}


/* =========================================
   TITLE
========================================= */

.page-banner-content {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding-bottom: 40px;

    z-index: 5;
}

.page-banner-content h1 {
    margin: 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 78px;

    font-weight: 400;

    line-height: 1;
}


/* =========================================
   MOVING GRASS
========================================= */

.grass-wrapper {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 80px;

    overflow: hidden;

    z-index: 10;

    line-height: 0;
}


.grass-track {
    display: flex;

    width: max-content;

    height: 100%;

    animation: grassMove 60s linear infinite;

    will-change: transform;
}


.grass-img {
    display: block;

    width: 1920px;
    min-width: 1920px;

    height: 80px;

    object-fit: fill;

    margin: 0;
    padding: 0;
}


/* =========================================
   GRASS ANIMATION
   LEFT Ã¢â€ â€™ RIGHT
========================================= */

@keyframes grassMove {

    0% {
        transform: translateX(-1920px);
    }

    100% {
        transform: translateX(0);
    }

}


/* =========================================
   BOTTOM SHAPE
========================================= */

.bottom-shape {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 55px;

    overflow: hidden;

    z-index: 11;

    line-height: 0;

    pointer-events: none;
}


.bottom-shape img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    margin: 0;
    padding: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .page-banner {
        height: 350px;
    }


    .page-banner-content h1 {
        font-size: 60px;
    }


    .grass-wrapper {
        height: 65px;
    }


    .grass-img {
        width: 1920px;
        min-width: 1920px;

        height: 65px;
    }


    .bottom-shape {
        height: 48px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .page-banner {
        height: 300px;
    }


    .page-banner-content {
        padding-bottom: 25px;
    }


    .page-banner-content h1 {
        font-size: 45px;
    }


    .grass-wrapper {
        height: 55px;
    }


    .grass-img {
        width: 1920px;
        min-width: 1920px;

        height: 55px;
    }


    .bottom-shape {
        height: 40px;
    }

}

/* =========================================
   LOCATION SECTION
========================================= */

.location-section {
    position: relative;
    background: #f5f5f5;
    padding: 82px 0 0;
    overflow: hidden;
}

.location-section .container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.location-content {
    padding-right: 65px;
}

.location-content h2 {
    margin: 0 0 35px;

    color: #111;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 64px;

    font-weight: 400;

    line-height: 1.1;
}

.location-content p {
    margin: 0;

    max-width: 510px;

    color: #8b8b8b;

    font-size: 16px;

    line-height: 1.78;

    letter-spacing: .2px;
}


/* =========================================
   RIGHT IMAGES
========================================= */

.location-images {
    width: 100%;

    display: flex;

    flex-direction: column;

    overflow: hidden;
}

.location-images img {
    display: block;

    width: 100%;

    height: 295px;

    object-fit: cover;

    object-position: center;
}


/* Screenshot mein dono images
   bilkul connected hain */

.location-images img + img {
    border-top: 1px solid #fff;
}


/* =========================================
   DECORATIVE LEAF
========================================= */

.location-leaf {
    position: absolute;

    right: -5px;
    bottom: 35px;

    width: 285px;
    height: 320px;

    background: url("assets/leaf.png")
                no-repeat right bottom / contain;

    opacity: .14;

    pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .location-section {
        padding: 65px 0 0;
    }

    .location-content {
        padding-right: 25px;
    }

    .location-content h2 {
        font-size: 52px;
        margin-bottom: 25px;
    }

    .location-content p {
        font-size: 15px;
    }

    .location-images img {
        height: 245px;
    }

    .location-leaf {
        width: 220px;
        height: 250px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .location-section {
        padding: 50px 15px 0;
    }

    .location-content {
        padding-right: 0;
        margin-bottom: 35px;
    }

    .location-content h2 {
        font-size: 45px;
        margin-bottom: 22px;
    }

    .location-content p {
        max-width: 100%;

        font-size: 15px;

        line-height: 1.7;
    }

    .location-images img {
        height: auto;
        min-height: 220px;
    }

    .location-leaf {
        width: 170px;
        height: 200px;
        bottom: 10px;
        opacity: .10;
    }

}

.rules-section {
        width: 100%;
        padding: 8px 25px 0;
        position: relative;
        overflow: hidden;
    }

    .rule-item {
        display: flex;
        align-items: center;
        min-height: 38px;
        border-bottom: 1px solid #ddd;
        font-size: 16px;
        line-height: 1.4;
        color: #777;
    }

    .rule-icon {
        width: 24px;
        min-width: 24px;
        margin-right: 0;
        color: #777;
        font-size: 17px;
        font-weight: bold;
        text-align: left;
    }

    .rule-text {
        padding: 8px 0;
        flex: 1;
    }

    /* Green curved shape on right-bottom */
    .green-shape {
        position: absolute;
        right: -24px;
        bottom: -55px;
        width: 65px;
        height: 65px;
        background: #29845f;
        border-radius: 50%;
    }

    @media (max-width: 768px) {
        .rules-section {
            padding: 5px 15px 0;
        }

        .rule-item {
            font-size: 14px;
            min-height: 36px;
        }

        .rule-icon {
            width: 22px;
            min-width: 22px;
            font-size: 15px;
        }

        .rule-text {
            padding: 7px 0;
        }
    }

    @media (max-width: 480px) {
        .rules-section {
            padding: 5px 12px 0;
        }

        .rule-item {
            font-size: 13px;
            line-height: 1.45;
            align-items: flex-start;
        }

        .rule-icon {
            width: 20px;
            min-width: 20px;
            font-size: 14px;
            padding-top: 8px;
        }

        .rule-text {
            padding: 7px 0;
        }

        .green-shape {
            width: 55px;
            height: 55px;
            right: -25px;
            bottom: -40px;
        }
    }
.elementor-icon-list-icon svg {
   fill: #C40410;
    transition: fill 0.3s;
    height: 25px;
    width: 25px;
}
a {
    color: rgb(44 50 69);
    text-decoration: none;
}
/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .location-section {
        padding-top: 40px;
    }

    .location-content h2 {
        font-size: 40px;
    }

    .location-images img {
        min-height: 190px;
    }

}