
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/* back-to-to */
.back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 50px;
    height: 40px;
    margin: 0px;
    font-size: 18px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
    z-index: 999;
    transform: skew(18deg);
}

.back-to-top a i {
    transform: skew(-18deg);
}

.back-to-top a:hover {
    background: var(--bs-dark);
    color: var(--bs-white); 
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-primary span,
.btn.btn-primary i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-primary:hover {
    background: var(--bs-white);
    color: var(--bs-dark);

}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-light span,
.btn.btn-light i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


.btn.btn-dark {
    color: var(--bs-primary);
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-dark span,
.btn.btn-dark i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top {
    height: 100%;
    position: relative;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 16%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    z-index: 1;
}

.topbar .login-btn {
    position: relative;
}

.topbar .login-btn::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: -1px;
    background: var(--bs-primary);
    transform: skew(18deg);
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 180px;
        height: 100%;
        padding: 0;
        display: flex;
        /* align-items: center; */
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.navbar-brand {
    position: relative;
    overflow: hidden;
    padding: 0px 50px 40px 0;
}

.navbar-brand::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 300px;
    height: 600px;
    top: -200px;
    right: 18px;
    background: var(--bs-dark);
    transform: rotate(-18deg);
    z-index: -1;
}

.header-top .navbar-brand {
    position: relative;
    z-index: 99;
}

.nav-bar .navbar {
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: none;
        background: var(--bs-primary);
        color: var(--bs-dark);
        transform: skew(18deg);
    }

    .navbar.navbar-expand-lg .navbar-toggler span {
        transform: skew(-18deg);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-btn {
        display: inline-flex;
        margin-left: auto;
        background: transparent;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .navbar-nav {
        background: transparent !important;
    }

    .nav-shaps-1 {
        position: absolute;
        overflow: hidden;
        min-width: calc(100% - 81%);
        height: 100%;
        top: 0;
        right: 0;
        transform: skew(18deg);
        background: var(--bs-dark);
        z-index: -1;
    }

    .nav-shaps-2 {
        position: absolute;
        overflow: hidden;
        width: 12%;
        height: 100%;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/goal-background-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../img/desktop-banner-1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section2 {
    background-image: url(../img/desktop-banner-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section3 {
    background-image: url(../img/desktop-banner-3.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section4 {
    background-image: url(../img/desktop-banner-4.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 320px) and (max-width: 374px){
    .hero-section {
        background-image: url(../img/mobilebanner-old.jpeg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
        width: 100%;
        height: 450px !important;
        right: 0;
        top: 0;
    }
}

@media (min-width: 375px) and (max-width: 420px){
    .hero-section {
        background-image: url(../img/mobilebanner-old.jpeg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        width: 100%;
        height: 525px !important;
        right: 0;
        top: 0;
    }
}

@media (min-width: 425px) and (max-width: 767px){
    .hero-section {
        background-image: url(../img/mobilebanner-old.jpeg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        width: 100%;
        height: 480px;
        right: 0;
        top: 0;
    }
}
@media (min-width: 768px) and (max-width: 1400px){
.header-carousel .header-carousel-item {
    height: 500px !important;
}
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 600px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: skew(18deg);
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 51%;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 51%;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    /* .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 500px;
    } */
}
/*** Carousel Hero Header End ***/


/*** About Start ***/
.about {
    position: relative;
    overflow: hidden;
    background: var(--bs-dark);
}

@media (min-width: 992px) {
    .about::before {
        content: "";
        position: absolute;
        width: 70%;
        height: 100%;
        top: 0;
        right: -400px;
        background: var(--bs-primary);
        transform: skew(28deg);
    }

    .about .about-content {
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .about::after {
        content: "";
        position: absolute;
        width: 70%;
        height: 100%;
        top: 0;
        left: -400px;
        background: var(--bs-primary);
        transform: skew(28deg);
    }

    .about .about-content {
        margin-bottom: 0px !important;
    }
}

.about .about-content {
    position: relative;
    z-index: 9;
}

.about .about-img {
    position: relative;
    z-index: 10;
}

.about .tab-class .nav .nav-item a {
    position: relative;
    transform: skew(18deg);
    text-align: center;
    background: var(--bs-white);
    color: var(--bs-dark);
}

.about .tab-class .nav .nav-item a span {
    transform: skew(-18deg);
}

.about .tab-class .nav .nav-item a.active {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** About End ***/


/*** Features Start ***/
.feature {
    overflow: hidden;
}

.feature-carousel.owl-carousel {
    z-index: 9;
    padding: 0 60px;
    transform: skew(10deg);
}

.feature .feature-shaps {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin-top: -200px;
    transform: skewX(-10deg);
    border: 3px solid var(--bs-primary);
    z-index: 2;
}

@media (max-width: 576px) {
    .feature .feature-shaps {
        width: 90%;
        margin-left: 5%;
    }
}

.feature .feature-item {
    position: relative;
}

.feature .feature-item .feature-img {
    position: relative;
    overflow: hidden;
}

.feature .feature-item .feature-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(255, 245, 225, .5);
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img::after {
    height: 100%;
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-img img {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img img {
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-content {
    position: relative;
    background: var(--bs-white);
    z-index: 1;
}

.feature .feature-item .feature-content h4 {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-content h4 {
    color: var(--bs-primary);
}

.feature .feature-item .feature-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: -1;
}

.feature .feature-item:hover .feature-content::after {
    height: 100%;
}

.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -122px;
    transform: skew(18deg);
    background: var(--bs-dark);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.feature-carousel .owl-nav .owl-prev i,
.feature-carousel .owl-nav .owl-next i {
    transform: skew(-18deg);
}

.feature-carousel .owl-nav .owl-prev {
    left: 0;
}
.feature-carousel .owl-nav .owl-next {
    right: 150px;
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Features End ***/

/*** Explore gravity public school Start ***/
.explore {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/appointment.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Explore gravity public school End ***/

/*** Conatct Start ***/
.contact {
    overflow: hidden;
}

.contact .form-section form .form-section-col {
    transform: skewX(18deg);
    margin: 0 12px;
}

.contact .contact-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    border: 2px solid var(--bs-dark);
    background: linear-gradient(rgba(255, 245, 225, 0.2), rgba(12, 24, 68, 0.1), rgba(200, 0, 54, 0.3));
}

.contact .contact-banner::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-image: url(../img/contact-banner.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact form button {
    border: none;
    transition: 0.5s;
}

.contact form button:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.9), rgba(12, 24, 68, 0.98));
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer button {
    border: none;
    transition: 0.5s;
}

.footer button:hover {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item .footer-item-img {
    transform: matrix(1, -0.09, 0, 1, 0, 0);
    transition: 0.5s;
}

.footer .footer-item .footer-item-img:hover {
    transform: matrix(1, 0.09, 0, 1, 0, 0);
}

.footer .footer-item .footer-item-img img {
    filter: grayscale(50%);
    transition: 0.5s;
}

.footer .footer-item .footer-item-img:hover img {
    filter: grayscale(0%);
}

.footer .footer-item a {
    line-height: 35px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/
.gallery-section {
    margin: 3% auto;
}
.mySlides {display:none;}
.fill {
    width: auto;
    margin: 0px auto;
    text-align: center;
    display: flex;
    height: 350px;
    width: 100%;
    position: relative;
}
.fill img {
    max-width: 100%;
    margin: 35px auto;
    max-width: 100%;
    height: auto;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
  /* Popup gallery styles */
  .popup-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .popup-gallery img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }
  
  .popup-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .popup-prev, .popup-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
  }
  
  .popup-prev {
    left: 20px;
  }
  
  .popup-next {
    right: 20px;
  }
  
  .gall-img-item {
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .gall-img-item:hover {
    transform: scale(1.03);
  }
@media only screen and (min-width: 770px) {
  .row.gall-row {
      display: flex !important;
      margin: auto 50px !important;
  }  
}
@media only screen and (min-width: 421px) and (max-width: 479px) {
      img.gallery-images-sgi{
        height:auto !important;
      }      
    }
      @media only screen and (min-width: 768px) and (max-width: 991px) {

    .fill {      
      height: auto !important;
  }
  .fill img{
    position: relative !important;
    position: relative !important;
    margin: -20% !important;
    transform: initial !important;
    left: 0% !important;
    top: 0% !important;
        margin-bottom: -6% !important;
  }
}
img.gallery-images-sgi {
  width: 100%;
  height: 250px;
  padding: 10px;
}
.slick-next, .slick-prev {
    display: none !important;
}
.row.gall-row {
  text-align: center;
}
h2.gall-head-sgi {
  background-color: #fbd808;
  color: #fff;
  font-weight: 500;
  width: fit-content;
  padding: 20px 60px 20px 60px;
  text-align: center;
  margin-bottom: -14px;
  border-radius: 7px;
  margin: auto;
}


/* =================================================
   CURRICULUM PARTNER — EDUVATE PAGE
   ================================================= */

/* ── Banner Carousel Controls ── */
.banner-carousel { overflow: hidden; }
.banner-carousel .carousel-indicators {
    bottom: 18px;
    gap: 6px;
}
.banner-carousel .carousel-indicators [data-bs-target] {
    width: 28px; height: 3px; border-radius: 2px;
    border: none; margin: 0;
    background: rgba(255,255,255,0.45); opacity: 1;
    transition: width 0.35s, background 0.35s;
}
.banner-carousel .carousel-indicators .active {
    width: 48px;
    background: #f5a623;
}
.banner-carousel .carousel-control-prev,
.banner-carousel .carousel-control-next {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    opacity: 1; top: 50%; transform: translateY(-50%);
    transition: background 0.25s;
}
.banner-carousel .carousel-control-prev { left: 18px; }
.banner-carousel .carousel-control-next { right: 18px; }
.banner-carousel .carousel-control-prev:hover,
.banner-carousel .carousel-control-next:hover {
    background: rgba(245,166,35,0.7);
    border-color: transparent;
}

/* ── Slide 1 : Diagonal Split ── */
.bn1-wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #0c1e5e;
}
.bn1-photo {
    position: absolute;
    right: 0; top: 0;
    width: 55%; height: 100%;
    clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.bn1-photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.bn1-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,30,94,0.55) 0%, transparent 50%);
}
.bn1-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.07);
    pointer-events: none;
}
.bn1-ring-1 { width: 320px; height: 320px; top: -90px; left: -90px; }
.bn1-ring-2 { width: 160px; height: 160px; bottom: -50px; left: 200px; border-color: rgba(245,166,35,0.15); }
.bn1-edge { position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #f5a623; }
.bn1-content {
    position: relative; z-index: 2;
    padding: 72px 0 72px 75px;
    max-width: 500px;
    min-height: 520px;
    display: flex; flex-direction: column; justify-content: center;
}
.bn1-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: #f5a623;
    margin-bottom: 22px;
}
.bn1-tag::before {
    content: ''; width: 22px; height: 1.5px;
    background: #f5a623; flex-shrink: 0;
}
.bn1-logo-pill { display: inline-block; margin-bottom: 28px; }
.bn1-logo-pill img {
    max-width: 155px; height: auto; display: block;
    background: rgba(255,255,255,0.97);
    border-radius: 6px; padding: 8px 14px;
}
.bn1-headline {
    font-size: 40px; font-weight: 700;
    color: #fff; line-height: 1.15; margin-bottom: 0;
}
.bn1-headline em { font-style: normal; color: #f5a623; }
.bn1-subtext {
    font-size: 15px; color: rgba(255,255,255,0.70);
    line-height: 1.65; margin-top: 14px; margin-bottom: 0;
}
.bn1-divider { width: 48px; height: 3px; background: #f5a623; margin-top: 24px; border-radius: 2px; }

/* ── Slide 2 : Full-Bleed Cinematic ── */
.bn2-wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}
.bn2-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.bn2-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,28,88,0.96) 0%,
        rgba(10,28,88,0.80) 42%,
        rgba(10,28,88,0.28) 70%,
        rgba(10,28,88,0.04) 100%
    );
}
.bn2-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1.5px solid rgba(245,166,35,0.2);
}
.bn2-ring-1 { width: 380px; height: 380px; bottom: -120px; right: 60px; }
.bn2-ring-2 { width: 220px; height: 220px; bottom: -55px; right: 160px; border-color: rgba(255,255,255,0.07); }
.bn2-content {
    position: relative; z-index: 2;
    padding: 80px 0 80px 75px;
    max-width: 560px;
    min-height: 520px;
    display: flex; flex-direction: column; justify-content: center;
}
.bn2-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(245,166,35,0.38);
    color: #f5a623;
    font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; padding: 6px 14px;
    border-radius: 20px; margin-bottom: 22px; width: fit-content;
}
.bn2-logo-pill { display: inline-block; margin-bottom: 26px; }
.bn2-logo-pill img {
    max-width: 165px; height: auto; display: block;
    background: rgba(255,255,255,0.95);
    border-radius: 6px; padding: 8px 14px;
}
.bn2-headline {
    font-size: 46px; font-weight: 700;
    color: #fff; line-height: 1.1; margin-bottom: 14px;
}
.bn2-headline em { font-style: normal; color: #f5a623; }
.bn2-tagline {
    font-size: 17px; color: rgba(255,255,255,0.72);
    line-height: 1.65; margin-bottom: 0;
}
.bn2-divider { width: 48px; height: 3px; background: #f5a623; margin-top: 26px; border-radius: 2px; }

/* ── About Partnership ── */
.about-partnership {
    padding: 70px 0;
    background: #fff;
}
.section-title-blue {
    color: #003580;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-divider {
    width: 50px;
    height: 3px;
    background: #f5a623;
    margin: 8px 0 20px;
}
.about-partnership h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 20px;
}
.about-partnership p {
    color: #555;
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

/* ── Why Eduvate ── */
.why-eduvate {
    background: #f4f7ff;
    padding: 70px 0;
}
.why-eduvate h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 8px;
}
.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,53,128,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,53,128,0.15);
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.feature-icon i { font-size: 26px; color: #003580; }
.feature-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1a2a6c;
    margin: 0;
    line-height: 1.4;
}

/* ── Impact Section ── */
.impact-section {
    background: #fff;
    padding: 70px 0;
}
.impact-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 8px;
}
.impact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 20px;
    background: #f8f9ff;
    border-radius: 10px;
    border-left: 4px solid #003580;
    height: 100%;
}
.impact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #003580;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.impact-icon i { font-size: 22px; color: #fff; }
.impact-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a6c;
    margin: 0;
    line-height: 1.4;
}

/* ── CTA Banner ── */
.partner-cta {
    background: #003580;
    padding: 40px 0;
}
.partner-cta h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}
.partner-cta p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-size: 14px;
}
.btn-eduvate {
    background: #f5a623;
    color: #1a2a6c;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: background 0.3s;
    border: none;
}
.btn-eduvate:hover {
    background: #e09413;
    color: #1a2a6c;
    text-decoration: none;
}

/* ── Page Breadcrumb Banner ── */
.page-banner {
    background: linear-gradient(90deg, #003580 60%, #1a5cc8 100%);
    padding: 18px 0;
}
.page-banner .breadcrumb { margin: 0; background: transparent; }
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
}
.page-banner .breadcrumb-item.active { color: #fff; font-weight: 600; }
.page-banner .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ── Responsive (curriculum partner page) ── */
@media (max-width: 991.98px) {
    .bn1-photo { width: 100%; clip-path: none; opacity: 0.2; }
    .bn1-content { padding: 52px 24px; max-width: 100%; min-height: 420px; }
    .bn1-headline { font-size: 28px; }
    .bn2-content { padding: 52px 24px; min-height: 420px; }
    .bn2-headline { font-size: 30px; }
    .bn2-tagline { font-size: 15px; }
    .bn2-ring { display: none; }
}
@media (max-width: 575.98px) {
    .bn1-content, .bn2-content { padding: 42px 20px; min-height: 380px; }
    .bn1-headline { font-size: 24px; }
    .bn1-logo-pill img, .bn2-logo-pill img { max-width: 130px; }
    .bn2-headline { font-size: 26px; }
}

