body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
}

p {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
}


/* all headings font size */
.main-heading {
    font-size: 32px !important;
    font-family: 'Poppins', sans-serif !important;

}


/* ======================================================
HEADER SECTION START
================================================== */
/* =========================================================
   SCHOOL HEADER
========================================================= */

.school-header {
    width: 100%;
    position: relative;
    z-index: 9999;
    background: #ffffff;
}


/* =========================================================
   TOP BLUE BAR
========================================================= */

.school-topbar {
    width: 100%;
    height: 54px;

    background: #061a3a;

    color: #ffffff;
}


.topbar-container {
    height: 54px;

    padding: 0 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   TOPBAR LEFT / RIGHT
========================================================= */

.topbar-left,
.topbar-right {
    height: 100%;

    display: flex;
    align-items: center;
}


.topbar-left {
    gap: 42px;
}


.topbar-right {
    gap: 32px;
}


/* =========================================================
   TOPBAR ITEM
========================================================= */

.topbar-item {
    display: flex;
    align-items: center;

    gap: 13px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 400;

    white-space: nowrap;
}


.topbar-item i {
    color: #ffb000;

    font-size: 18px;

    min-width: 18px;

    text-align: center;
}


/* location */

.location-item {
    margin-left: 4px;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.topbar-social {
    display: flex;
    align-items: center;

    gap: 22px;

    padding-left: 5px;
}


.topbar-social a {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    font-size: 17px;

    transition: 0.3s ease;

    border-radius: 50%;
    border: 1px solid goldenrod;
    padding: 20px;
}


.topbar-social a:hover {
    color: #ffb000;
    transform: translateY(-2px);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.header-container {
    min-height: 100px;

    width: 100%;

    padding: 0 42px;

    display: flex;
    align-items: center;

    gap: 28px;

    background: #ffffff;
}


/* =========================================================
   LOGO
========================================================= */

.school-logo {
    width: 400px;

    flex: 0 0 400px;

    display: flex;
    align-items: center;
}


.school-logo a {
    display: block;

    text-decoration: none;
}


.school-logo img {
    display: block;

    width: 100%;
    /* max-width: 120px; */

    height: auto;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.school-navigation {
    flex: 1;

    min-width: 0;


}


.school-navigation .navbar-collapse {
    display: block !important;
}


/* =========================================================
   NAVIGATION BOX
========================================================= */

.school-nav-menu {
    width: 100%;

    min-height: 101px;

    margin: 0;
    padding: 0 5px !important;


    list-style: none;

    display: flex;
    align-items: stretch;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e2e2e2;


    border-radius: 25px;




    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}


/* =========================================================
   NAV ITEM
========================================================= */

.school-nav-item {
    position: relative;

    display: flex;
    align-items: stretch;
}


.school-nav-item>a {
    position: relative;

    min-width: 96px;

    padding: 5px 9px 5px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #061a3a !important;

    text-decoration: none !important;

    transition: all 0.3s ease;
}


/* =========================================================
   NAV ICON
========================================================= */

.nav-icon {
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #11151e;

    font-size: 21px;

    transition: all 0.3s ease;
}


.nav-icon i {
    font-size: inherit;
}


/* =========================================================
   NAV TEXT
========================================================= */

.nav-text {
    margin-top: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    color: #11151e;

    font-size: 12px;
    line-height: 16px;

    font-weight: 500;

    white-space: nowrap;

    transition: all 0.3s ease;
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.dropdown-arrow {
    font-size: 8px;

    margin-left: 2px;
}


/* =========================================================
   ACTIVE HOME
========================================================= */

.school-nav-item.active>a {
    color: #f6a400;
}


.school-nav-item.active .nav-icon,
.school-nav-item.active .nav-text {
    color: #f6a400;
}


/* turquoise line */

.school-nav-item.active>a::after {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;

    bottom: 0;

    height: 4px;

    background: #f6a400;

    border-radius: 5px 5px 0 0;
}


/* =========================================================
   HOVER
========================================================= */

.school-nav-item>a:hover .nav-icon,
.school-nav-item>a:hover .nav-text {
    color: #f6a400;
}


/* =========================================================
   DROPDOWN
========================================================= */

.school-sub-menu {
    position: absolute;

    top: calc(100% - 1px);
    left: 0;

    min-width: 235px;

    margin: 0;
    padding: 8px 0;

    list-style: none;

    background: #ffffff;

    border-radius: 0 0 8px 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;

    z-index: 99999;
}


.school-nav-item:hover>.school-sub-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   SUB MENU
========================================================= */

.school-sub-menu li {
    position: relative;

    list-style: none;
}


.school-sub-menu li a {
    min-height: 42px;

    padding: 10px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: #222733;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.2s ease;
}


.school-sub-menu li a:hover {
    color: #00a9c7;

    background: #f3fcfd;

    padding-left: 23px;
}


.school-sub-menu li a i {
    font-size: 9px;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.header-contact {
    flex: 0 0 auto;
}


.contact-button {
    height: 54px;

    min-width: 170px;

    padding: 0 8px 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    background: rgb(246, 164, 0);

    border-radius: 30px;

    color: #ffffff !important;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none !important;

    white-space: nowrap;

    transition: all 0.3s ease;
}


.contact-button:hover {
    background: #fff;

    color: rgb(246, 164, 0) !important;

    transform: translateY(-1px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/* =========================================================
   CONTACT ARROW
========================================================= */

.contact-button i {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #1475a8;

    font-size: 17px;

    transition: 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.contact-button:hover i {
    transform: translateX(3px);
}


/* =========================================================
   MOBILE TOGGLER
========================================================= */

.custom-toggler {
    display: none;

    width: 45px;
    height: 42px;

    padding: 7px;

    border: 1px solid #dddddd !important;

    border-radius: 6px;

    background: #ffffff;
}


.custom-toggler span {
    width: 25px;
    height: 2px;

    display: block;

    margin: 5px auto;

    background: #111827;
}


/* ==============================
RESPONSIVE
============================== */
/* =========================================================
   RESPONSIVE HEADER
========================================================= */


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .school-logo {
        width: 400px;
        flex: 0 0 400px;
    }

    .school-nav-item>a {
        min-width: 95px;
    }

}


/* =========================================================
   DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1399px) {

    .header-container {
        padding: 0 25px;
        gap: 1px;
    }

    .school-logo {
        width: 300px;
        flex: 0 0 300px;
    }

    .school-nav-item>a {
        min-width: 82px;
        padding: 14px 8px 9px;
    }

    .nav-text {
        font-size: 11px;
    }

    .nav-icon {
        font-size: 19px;
    }

    .contact-button {
        min-width: 155px;
    }

}


/* =========================================================
   TABLET LANDSCAPE
========================================================= */

@media (max-width: 1199px) {

    .topbar-container {
        padding: 0 25px;
    }

    .topbar-left {
        gap: 20px;
    }

    .topbar-right {
        gap: 20px;
    }

    .school-logo {
        width: 260px;
        flex: 0 0 260px;
    }

    .school-nav-menu {
        min-height: 90px;
    }

    .school-nav-item>a {
        min-width: 70px;
    }

    .nav-text {
        font-size: 10px;
    }

    .header-contact {
        display: none;
    }

}


/* =========================================================
   MOBILE / TABLET HEADER
========================================================= */

@media (max-width: 991px) {


    /* =========================
       TOP BAR
    ========================= */

    .school-topbar {
        height: auto;
    }


    .topbar-container {
        height: auto;

        min-height: 52px;

        padding: 10px 20px;

        flex-wrap: wrap;

        gap: 12px;
    }


    .topbar-left,
    .topbar-right {
        height: auto;

        gap: 20px;
    }


    .topbar-item {
        font-size: 13px;
    }


    .topbar-social {
        gap: 15px;
    }


    /* =========================
       MAIN HEADER
    ========================= */

    .header-container {
        position: relative;

        min-height: 100px;

        padding: 15px 20px;

        justify-content: space-between;

        gap: 15px;

        flex-wrap: wrap;
    }


    /* =========================
       LOGO
    ========================= */

    .school-logo {
        width: 300px;

        flex: 0 1 300px;
    }


    /* =========================
       HAMBURGER
    ========================= */

    .custom-toggler {
        display: block;

        flex: 0 0 45px;

        margin-left: auto;

        cursor: pointer;

        box-shadow: none !important;

        outline: none !important;
    }


    .custom-toggler:focus {
        box-shadow: none !important;
    }


    /* =========================
       NAVIGATION
    ========================= */

    .school-navigation {
        width: 100%;

        flex: 0 0 100%;
    }


    .school-navigation .navbar-collapse {
        display: none !important;

        width: 100%;
    }


    .school-navigation .navbar-collapse.show {
        display: block !important;
    }


    .school-nav-menu {
        min-height: auto;

        width: 100%;

        margin-top: 10px;

        padding: 8px 0;

        display: block;

        border-radius: 12px;
    }


    /* =========================
       NAV ITEM
    ========================= */

    .school-nav-item {
        width: 100%;

        display: block;

        border-bottom: 1px solid #eeeeee;
    }


    .school-nav-item:last-child {
        border-bottom: none;
    }


    .school-nav-item>a {
        min-width: 100%;

        height: 58px;

        padding: 0 20px;

        flex-direction: row;

        justify-content: flex-start;

        gap: 15px;
    }


    /* =========================
       NAV ICON
    ========================= */

    .nav-icon {
        width: 28px;

        height: auto;

        font-size: 18px;
    }


    /* =========================
       NAV TEXT
    ========================= */

    .nav-text {
        margin-top: 0;

        font-size: 13px;

        justify-content: flex-start;
    }


    /* =========================
       DROPDOWN ARROW
    ========================= */

    .dropdown-arrow {
        margin-left: auto;

        font-size: 10px;
    }


    /* =========================
       REMOVE ACTIVE BOTTOM LINE
    ========================= */

    .school-nav-item.active>a::after {
        left: 0;
        right: auto;

        top: 0;
        bottom: 0;

        width: 4px;
        height: 100%;

        border-radius: 0 5px 5px 0;
    }


    /* =========================
       DROPDOWN
    ========================= */

    .school-sub-menu {
        position: static;

        min-width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        padding: 0;

        border-radius: 0;

        box-shadow: none;

        background: #f7fbfc;
    }


    .school-nav-item.dropdown-open>.school-sub-menu {
        display: block;
    }


    .school-sub-menu li a {
        min-height: 48px;

        padding: 12px 20px 12px 60px;

        font-size: 13px;
    }


    .school-sub-menu li a:hover {
        padding-left: 65px;
    }


    /* =========================
       CONTACT BUTTON
    ========================= */

    .header-contact {
        display: block;

        width: 100%;

        margin-top: 5px;
    }


    .contact-button {
        width: 100%;

        justify-content: center;

        min-width: auto;

        gap: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 767px) {

    .school-topbar {
        display: none;
    }


    .header-container {
        min-height: 82px;

        padding: 12px 15px;
    }


    .school-logo {
        width: 210px;

        flex: 0 1 210px;
    }


    .custom-toggler {
        width: 44px;
        height: 42px;
    }


    .school-nav-menu {
        margin-top: 8px;
    }


    .school-nav-item>a {
        height: 56px;

        padding-left: 15px;
        padding-right: 15px;
    }


    .contact-button {
        height: 50px;

        font-size: 14px;
    }


    .contact-button i {
        width: 36px;
        height: 36px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .school-logo {
        width: 180px;

        flex-basis: 180px;
    }


    .custom-toggler {
        width: 42px;
        height: 40px;
    }


    .custom-toggler span {
        width: 22px;
    }


    .header-container {
        padding: 10px 12px;
    }


    .school-sub-menu li a {
        padding-left: 50px;
    }

}

/* ======================================================
HEADER SECTION END
================================================== */


.carousel-inner {
    height: 700px;

}

.carousel-inner img {
    height: 698px;
    object-fit: cover;

}

.page-content {
    padding: 0 !important;
}

/* =============================================
 HOME TOP STRIP CARDS START
=============================================== */
/* =====================================================
   TOP STRIP MAIN
===================================================== */

.top-strip-main {
    padding: 10px 0;

    /* APNI BACKGROUND IMAGE KA PATH YAHAN DO */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;

    height: 0px;
    background-image: url("../images/background/home-page-admission.png");
    background-repeat: no-repeat;
    background-size: cover;
}


/* =====================================================
   ROW
===================================================== */

.top-strip-main-row {
    align-items: stretch;

    margin-left: -9px;
    margin-right: -9px;
    position: relative;
    transform: translateY(-140px);
}


.top-strip-main-row>div {
    padding-left: 9px;
    padding-right: 9px;
}


/* =====================================================
   CARD
===================================================== */

.top-strip-main-card {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 222px;

    padding: 20px 24px;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .18);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.top-strip-main-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, .22);
}


/* =====================================================
   CARD COLORED LEFT EDGE
===================================================== */

.top-strip-main-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 13px;
    height: 100%;

    border-radius: 22px 0 0 22px;
}


.top-strip-main-blue::before {
    background: #1760d0;
}


.top-strip-main-orange::before {
    background: #f6a400;
}


.top-strip-main-red::before {
    background: #ef202c;
}


/* =====================================================
   ICON AREA
===================================================== */

.top-strip-main-icon-wrap {

    flex: 0 0 125px;

    width: 125px;
    height: 125px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 22px;

    border-radius: 50%;

    background: #ffffff;

    border: 4px solid #dce7f5;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, .15);
}


/* =====================================================
   ICON CIRCLE
===================================================== */

.top-strip-main-icon {

    width: 100px;
    height: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    border: 3px solid rgba(255, 255, 255, .7);

    box-shadow:
        inset 0 0 0 4px rgba(255, 255, 255, .18),
        0 4px 8px rgba(0, 0, 0, .15);
}


/* BLUE ICON */

.top-strip-main-blue .top-strip-main-icon {

    background:
        linear-gradient(145deg,
            #2772df,
            #084cae);
}


/* ORANGE ICON */

.top-strip-main-orange .top-strip-main-icon {

    background:
        linear-gradient(145deg,
            #ffb51b,
            #e98500);
}


/* RED ICON */

.top-strip-main-red .top-strip-main-icon {

    background:
        linear-gradient(145deg,
            #f52e3c,
            #d30d1d);
}


/* =====================================================
   BOOTSTRAP ICON FIX
===================================================== */

.top-strip-main i.bi {

    font-family: "bootstrap-icons" !important;

    font-style: normal !important;

    font-weight: normal !important;

    line-height: 1;

    display: inline-block;

    width: auto;
    height: auto;

    background: none;

    border: 0;

    box-shadow: none;
}


/* Main large icon */

.top-strip-main-icon .top-strip-main {

    font-size: 47px;

    color: #ffffff;
}


/* =====================================================
   CONTENT
===================================================== */

.top-strip-main-content {

    position: relative;

    z-index: 2;

    flex: 1;

    padding-bottom: 3px;
}


.top-strip-main-content h3 {

    margin: 0;

    color: #092653;

    font-size: 20px;

    line-height: 1.25;

    font-weight: 800;

    letter-spacing: .2px;
}


/* =====================================================
   SMALL LINE
===================================================== */

.top-strip-main-line {

    display: block;

    width: 40px;
    height: 3px;

    margin: 10px 0 12px;

    border-radius: 5px;
}


.top-strip-main-blue .top-strip-main-line {

    background: #1559bc;
}


.top-strip-main-orange .top-strip-main-line {

    background: #f3a000;
}


.top-strip-main-red .top-strip-main-line {

    background: #e3222e;
}


/* =====================================================
   PARAGRAPH
===================================================== */

.top-strip-main-content p {

    max-width: 205px;

    margin: 0 0 13px;

    color: #222b36;

    font-size: 13px;

    line-height: 1.7;

    font-weight: 400;
}


/* =====================================================
   LEARN MORE
===================================================== */

.top-strip-main-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #1451a5;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all .3s ease;
}


.top-strip-main-link:hover {

    color: #092653;

    text-decoration: none;

    gap: 13px;
}


/* Arrow */

.top-strip-main-link .top-strip-main {

    font-size: 18px;

    color: inherit;
}


/* =====================================================
   ORANGE LINK
===================================================== */

.top-strip-main-orange .top-strip-main-link {

    color: #ed9b00;
}


/* =====================================================
   RED LINK
===================================================== */

.top-strip-main-red .top-strip-main-link {

    color: #df1b28;
}


/* =====================================================
   BIG NUMBER
===================================================== */

.top-strip-main-number {

    position: absolute;

    right: 13px;
    bottom: 9px;

    color: #e6e8ed;

    font-size: 58px;

    line-height: 1;

    font-weight: 800;

    z-index: 1;

    pointer-events: none;
}


/* =====================================================
   NUMBER HOVER
===================================================== */

.top-strip-main-card:hover .top-strip-main-number {

    color: #dfe3e9;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {
    .top-strip-main {

        height: 833px;

    }
}

@media (max-width: 1199px) {


    .top-strip-main {

        height: 287px;

    }

    .row top-strip-main-row {
        padding: 30px;

    }


    .top-strip-main-card {

        min-height: 245px;

        padding: 22px 18px;
    }

    .top-strip-main-icon-wrap {

        flex: 0 0 105px;

        width: 105px;
        height: 105px;

        margin-right: 15px;
    }

    .top-strip-main-icon {

        width: 83px;
        height: 83px;
    }

    .top-strip-main-icon .top-strip-main {

        font-size: 38px;
    }

    .top-strip-main-content h3 {

        font-size: 17px;
    }

    .top-strip-main-content p {

        font-size: 12px;
    }


    .top-strip-main-row {

        row-gap: 18px;
        position: relative;
        transform: translateY(0px);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 769px) {

    .top-strip-main {
        height: 785px;
    }

    .top-strip-main-row {

        row-gap: 18px;
        position: relative;
        transform: translateY(0px);

    }

    .top-strip-main-card {

        /* min-height: 220px; */

        padding: 24px 20px;

        border-radius: 18px;
    }

    .top-strip-main-icon-wrap {

        flex: 0 0 100px;

        width: 100px;
        height: 100px;
    }

    .top-strip-main-icon {

        width: 78px;
        height: 78px;
    }

    .top-strip-main-icon .top-strip-main {

        font-size: 35px;
    }

    .top-strip-main-content h3 {

        font-size: 18px;
    }

    .top-strip-main-number {

        font-size: 48px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {


    .top-strip-main {
        height: 760px;
    }

    .top-strip-main-card {

        min-height: 205px;

        padding: 20px 15px;
    }

    .top-strip-main-icon-wrap {

        flex: 0 0 85px;

        width: 85px;
        height: 85px;

        margin-right: 12px;

        border-width: 3px;
    }

    .top-strip-main-icon {

        width: 68px;
        height: 68px;
    }

    .top-strip-main-icon .top-strip-main {

        font-size: 29px;
    }

    .top-strip-main-content h3 {

        font-size: 16px;
    }

    .top-strip-main-content p {

        font-size: 11px;

        line-height: 1.5;

        margin-bottom: 9px;
    }

    .top-strip-main-link {

        font-size: 12px;
    }

    .top-strip-main-number {

        font-size: 42px;

        right: 8px;
    }

}

/* =============================================
 HOME TOP STRIP CARDS END
=============================================== */

/* ===============================================
ABOUT SECTION START ON HOME PAGE 
============================================== */
/* =========================================
   ABOUT US SECTION
========================================= */
.abt-us {

    background-image: url("../images/background/home-page-about-section.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 60px;
}

.about-uss {

    padding: 100px 0;
    overflow: hidden;

}


/* =========================================
   LEFT IMAGE
========================================= */

.about-uss-image {
    position: relative;
    overflow: hidden;
    height: 620px;
    padding: 7px;
    border-radius: 28px;

    background: linear-gradient(145deg,
            #1769e8,
            #ffffff 45%,
            #e7ae32);

    box-shadow:
        0 20px 45px rgba(15, 53, 110, 0.14);
}

.about-uss-image::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .7);
    pointer-events: none;
    z-index: 2;
}

.about-uss-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 22px;

    transition: transform .7s ease;
}

.about-uss-image:hover img {
    transform: scale(1.04);
}

/* img text */

/* ================= IMAGE INFO BOX ================= */

.about-uss-info {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;

    background: #08286f;
    border-radius: 24px;

    padding: 22px 25px;

    display: flex;
    align-items: center;
    gap: 18px;

    z-index: 5;

    box-shadow: rgba(255, 255, 255, 0.404) 0px 5px 15px;
}

.about-uss-info:hover {
    border: 1px solid #fff;
    transform: translateY(-5px);
    transition: 0.3s ease;
    cursor: pointer;
}

.about-uss-info-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;

    border-radius: 50%;

    border: 2px solid rgba(67, 211, 255, .5);

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-uss-info-icon i {
    font-size: 32px;
    color: #25d0ff;
}

.about-uss-info-content h4 {
    color: #25d0ff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.about-uss-info-content p {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */

@media(max-width:767px) {

    .abt-us {
        padding-top: 40px;

    }

    .about-uss-info {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 18px;
        gap: 12px;
    }

    .about-uss-info-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .about-uss-info-icon i {
        font-size: 24px;
    }

    .about-uss-info-content h4 {
        font-size: 22px;
    }

    .about-uss-info-content p {
        font-size: 14px;
    }
}

/* =========================================
   RIGHT CONTENT
========================================= */

.about-uss-content {
    padding-left: 30px;

}


/* Small title */

.about-uss-small-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 8px;

    color: #e0a928;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-uss-small-title span {
    display: inline-block;
    width: 35px;
    height: 2px;
    background: #e0a928;
}


/* Main heading */

.about-uss-title {
    margin: 0 0 15px;

    color: #102c55;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.about-uss-title strong {
    color: #1769e8;
}


/* Description */

.about-uss-description {
    max-width: 720px;

    margin: 0 0 28px;

    color: #68758a;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   FEATURE CARDS
========================================= */

.about-uss-features {
    margin-left: -7px;
    margin-right: -7px;
}

.about-uss-features>div {
    padding-left: 7px;
    padding-right: 7px;
    margin-bottom: 14px;
}

.about-uss-card {
    position: relative;

    min-height: 145px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 20px;

    background: rgba(255, 255, 255, .95);

    border: 1px solid #e8edf5;
    border-radius: 15px;

    box-shadow:
        0 7px 22px rgba(30, 50, 80, .07);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* Hover */

.about-uss-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 30px rgba(30, 50, 80, .12);
}


/* =========================================
   ICON
========================================= */

.about-uss-icon {
    flex: 0 0 62px;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    font-size: 27px;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, .12);
}

.about-uss-card h5 {
    margin: 0 0 6px;

    color: #122d55;
    font-size: 18px;
    font-weight: 700;
}

.about-uss-card p {
    margin: 0;

    color: #68758a;
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================
   CARD COLORS
========================================= */

.about-uss-blue {
    border-left: 3px solid #1769e8;
}

.about-uss-icon img {

    width: 40px;
    height: 40px;
}

.about-uss-blue .about-uss-icon {
    background: linear-gradient(135deg, #3b82f6, #1457d9);

}



.about-uss-purple {
    border-left: 3px solid #7c3aed;
}

.about-uss-purple .about-uss-icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}


.about-uss-green {
    border-left: 3px solid #16a34a;
}

.about-uss-green .about-uss-icon {
    background: linear-gradient(135deg, #22c55e, #159447);
}


.about-uss-orange {
    border-left: 3px solid #f97316;
}

.about-uss-orange .about-uss-icon {
    background: linear-gradient(135deg, #fb923c, #ea650c);
}


.about-uss-pink {
    border-left: 3px solid #ec3d76;
}

.about-uss-pink .about-uss-icon {
    background: linear-gradient(135deg, #f43f78, #db2560);
}


.about-uss-cyan {
    border-left: 3px solid #06b6c9;
}

.about-uss-cyan .about-uss-icon {
    background: linear-gradient(135deg, #22c1d1, #069aaa);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .about-uss-image {
        height: 560px;
    }

    .about-uss-title {
        font-size: 36px;
    }

    .about-uss-card {
        min-height: 150px;
        padding: 16px;
        gap: 13px;
    }

    .about-uss-icon {
        flex: 0 0 55px;
        width: 55px;
        height: 55px;
        font-size: 23px;
    }

    .about-uss-card h5 {
        font-size: 16px;
    }

    .about-uss-card p {
        font-size: 12px;
    }
}


@media (max-width: 991px) {

    .about-uss {
        padding: 60px 0;
    }

    .about-uss-image {
        height: 500px;
        max-width: 600px;
        margin: 0 auto 40px;
    }

    .about-uss-content {
        padding-left: 0;
    }

    .about-uss-title {
        font-size: 34px;
    }
}


@media (max-width: 575px) {

    .about-uss {
        padding: 45px 0;
    }

    .about-uss-image {
        height: 420px;
        border-radius: 20px;
    }

    .about-uss-image img {
        border-radius: 15px;
    }

    .about-uss-small-title {
        font-size: 11px;
    }

    .about-uss-title {
        font-size: 29px;
    }

    .about-uss-description {
        font-size: 13px;
        line-height: 1.65;
    }

    .about-uss-card {
        min-height: auto;
        padding: 15px;
    }

    .about-uss-icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .about-uss-card h5 {
        font-size: 15px;
    }

    .about-uss-card p {
        font-size: 12px;
    }
}

/* ===============================================
ABOUT SECTION END ON HOME PAGE 
============================================== */

/* ================================================
OUR FACILITY SECTION START ON HOME PAGE 
================================================== */
/* =========================================
   OUR FACILITY SECTION
========================================= */

.our-facility {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.our-facility-header {
    max-width: 850px;
    margin: 0 auto 40px;
}

.our-facility-header h2 {
    margin: 0 0 8px;
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

.our-facility-header p {
    margin: 0 auto 18px;
    max-width: 800px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.our-facility-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    height: 42px;
    padding: 0 22px;
    border: 2px solid #f5b400;
    border-radius: 30px;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.our-facility-btn:hover {
    background: #f5b400;
    color: #fff;
    text-decoration: none;
}


/* =========================================
   FACILITY GRID
========================================= */

.our-facility-grid {
    position: relative;
    max-width: 1080px;
    min-height: 450px;
    margin: 0 auto;
}


/* =========================================
   CARDS
========================================= */

.our-facility-card {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.our-facility-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}


/* Hover Zoom */

.our-facility-card:hover img {
    transform: scale(1.08);
}


/* =========================================
   OVERLAY
========================================= */

.our-facility-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 12px 12px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0));

    transform: translateY(8px);
    transition: all 0.35s ease;
}

.our-facility-overlay h5 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.our-facility-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    line-height: 1.4;

    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
}

.our-facility-card:hover .our-facility-overlay {
    transform: translateY(0);
}

.our-facility-card:hover .our-facility-overlay p {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   CARD POSITIONS
========================================= */

/* Labs */
.facility-labs {
    width: 165px;
    height: 245px;
    left: 0;
    top: 105px;
}

/* Main Building */
.facility-main {
    width: 255px;
    height: 320px;
    left: 185px;
    top: 0;
}

/* Classrooms */
.facility-classroom {
    width: 165px;
    height: 205px;
    left: 460px;
    top: 20px;
}

/* Sports */
.facility-sports {
    width: 165px;
    height: 245px;
    left: 645px;
    top: 125px;
}

/* Transportation */
.facility-transport {
    width: 255px;
    height: 192px;
    right: 0;
    top: 0;
}

/* Library */
.facility-library {
    width: 165px;
    height: 105px;
    left: 185px;
    bottom: 0;
}

/* Infirmary */
.facility-infirmary {
    width: 165px;
    height: 245px;
    right: 90px;
    bottom: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .our-facility-header h2 {
        font-size: 34px;
    }

    .our-facility-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        min-height: auto;
    }

    .our-facility-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: 230px;
    }

    .facility-main {
        height: 300px;
    }

    .facility-library {
        height: 180px;
    }
}


@media (max-width: 767px) {

    .our-facility {
        padding: 50px 0;
    }

    .our-facility-header {
        margin-bottom: 30px;
    }

    .our-facility-header h2 {
        font-size: 30px;
    }

    .our-facility-header p {
        font-size: 14px;
    }

    .our-facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-facility-card,
    .facility-main,
    .facility-library {
        height: 220px;
    }
}


@media (max-width: 480px) {

    .our-facility-grid {
        grid-template-columns: 1fr;
    }

    .our-facility-card,
    .facility-main,
    .facility-library {
        height: 240px;
    }
}

/* ================================================
OUR FACILITY SECTION END ON HOME PAGE 
================================================== */

/* ====================================================
EVENT SECTION START ON HOME PAGE 
==================================================== */
/* =========================================
   OUR INSTITUTIONS
========================================= */
/* =========================================
   MAIN SECTION
========================================= */

.our-institutions {
    position: relative;
    padding: 85px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(circle at center,
            rgba(247, 189, 50, .08),
            transparent 28%),
        radial-gradient(circle at 50% 45%,
            rgba(20, 70, 140, .25),
            transparent 55%),
        linear-gradient(135deg,
            #06152d 0%,
            #0a2344 50%,
            #06172f 100%);

    background-image: url("../images/background/home-page-event.png");
    background-repeat: no-repeat;
    background-size: cover;
}


/* =========================================
   HEADER
========================================= */

.our-institutions-header {
    position: relative;
    z-index: 20;
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.our-institutions-header span {
    display: block;
    margin-bottom: 7px;

    color: #f7bd32;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.our-institutions-header h2 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
}

.our-institutions-header p {
    max-width: 610px;
    margin: 0 auto;

    color: rgba(255, 255, 255, .72);

    font-size: 13px;
    line-height: 1.7;
    padding-bottom: 17px;
}


/* =========================================
   ORBIT
========================================= */

.institutions-orbit {
    position: relative;

    width: 900px;
    height: 650px;

    margin: 45px auto 0;
}


/* =========================================
   ORBIT CIRCLES
========================================= */

.institutions-orbit::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 405px;
    height: 405px;

    transform: translate(-50%, -50%);

    border: 1px dashed rgba(247, 189, 50, .20);

    border-radius: 50%;

    pointer-events: none;
}

.institutions-orbit::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 285px;
    height: 285px;

    transform: translate(-50%, -50%);

    border: 1px dashed rgba(255, 255, 255, .08);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   CENTER
========================================= */

.institution-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 170px;
    height: 170px;

    transform: translate(-50%, -50%);

    z-index: 15;
}


/* Glow */

.center-orbit-glow {
    position: absolute;

    inset: -35px;

    border-radius: 50%;

    background: rgba(247, 189, 50, .15);

    filter: blur(25px);

    animation: centerGlow 3s ease-in-out infinite;
}


/* Outer center ring */

.center-logo {
    position: relative;

    width: 170px;
    height: 170px;

    padding: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg,
            #fff,
            #f7bd32,
            #fff,
            #d69b16) border-box;

    border: 5px solid transparent;

    box-shadow:
        0 0 12px rgba(255, 255, 255, .9),
        0 0 28px rgba(247, 189, 50, .8),
        0 0 65px rgba(247, 189, 50, .3);
}


/* Center logo */

.center-logo-inner {
    width: 100%;
    height: 100%;

    border-radius: 50%;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
}

.center-logo-inner img {
    width: 88%;
    height: 88%;

    object-fit: contain;

    border-radius: 50%;
}


/* =========================================
   CENTER LIGHT DOTS
========================================= */

.center-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 5px #fff,
        0 0 12px #f7bd32,
        0 0 20px #f7bd32;

    z-index: 20;

    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 {
    left: 50%;
    top: -15px;
}

.dot-2 {
    right: -8px;
    top: 18%;
}

.dot-3 {
    right: -15px;
    top: 50%;
}

.dot-4 {
    right: -8px;
    bottom: 18%;
}

.dot-5 {
    left: 50%;
    bottom: -15px;
}

.dot-6 {
    left: -8px;
    bottom: 18%;
}

.dot-7 {
    left: -15px;
    top: 50%;
}

.dot-8 {
    left: -8px;
    top: 18%;
}


/* =========================================
   INSTITUTION ITEM
========================================= */

.institution-item {
    position: absolute;

    width: 260px;
    height: 130px;

    z-index: 10;
}


/* =========================================
   CONTENT
========================================= */

.institution-content {
    display: flex;
    align-items: center;

    gap: 14px;
}

.ins-text-info {
    text-align: right;
}

.ins-text-startend {
    gap: 6px;
}


/* =========================================
   IMAGE WRAPPER
========================================= */

.institution-image-wrap {
    position: relative;

    flex: 0 0 auto;

    width: 130px;
    height: 130px;
}


/* =================animaton========= */
.institution-image-wrap {
    position: relative;
    padding: 2.5px;
    border-radius: 50%;
    overflow: hidden;
}

.institution-image-wrap::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(#1769e8,
            #ffffff,
            #e7ae32,
            #1769e8);
    animation: institutionRotate 2s linear infinite;
}

.institution-image {
    position: relative;
    z-index: 2;
    border-radius: 50%px;
    overflow: hidden;
    background: #fff;
}

.institution-image img {
    width: 100%;
    display: block;
    border-radius: 26px;
}

@keyframes institutionRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   IMAGE
========================================= */

.institution-image {
    position: relative;

    width: 130px;
    height: 130px;

    padding: 4px;

    border-radius: 50%;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg,
            #ffffff,
            #f7bd32,
            #ffffff,
            #d89d1b) border-box;

    border: 3px solid transparent;

    box-shadow:
        0 0 8px rgba(255, 255, 255, .8),
        0 0 18px rgba(247, 189, 50, .35);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.institution-image::before {
    content: "";

    position: absolute;

    inset: -7px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .45);

    pointer-events: none;
}

.institution-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    transition:
        transform .5s ease,
        filter .5s ease;
}


/* =========================================
   IMAGE HOVER
========================================= */

.institution-item:hover .institution-image {
    transform: scale(1.08);

    box-shadow:
        0 0 12px rgba(255, 255, 255, 1),
        0 0 25px rgba(247, 189, 50, .9),
        0 0 45px rgba(247, 189, 50, .45);
}

.institution-item:hover .institution-image img {
    transform: scale(1.1);
}


/* =========================================
   ICON
========================================= */

.institution-icon {
    position: absolute;

    right: -25px;
    bottom: -15px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 2px solid #fff;

    color: #fff;

    font-size: 14px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .35);

    z-index: 5;
}

/* ==================animation================== */


/* =========================================
   ICON BACKGROUND CLASSES
========================================= */

.icon-blue {
    background: #2563eb;
}

.icon-purple {
    background: #7c3aed;
}

.icon-cyan {
    background: #0891b2;
}

.icon-orange {
    background: #ea580c;
}

.icon-pink {
    background: #db2777;
}

.icon-green {
    background: #16a34a;
}

.icon-red {
    background: #dc2626;
}

.icon-yellow {
    background: #ca8a04;
}


/* =========================================
   INFORMATION
========================================= */

.institution-info {
    width: 135px;
    margin-left: 25px;
}

.institution-info h4 {
    position: relative;

    margin: 0 0 7px;

    color: #fff;

    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;

    text-transform: uppercase;
}

.institution-info h4::after {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin-top: 6px;

    background: linear-gradient(90deg,
            #f7bd32,
            transparent);

    box-shadow: 0 0 6px rgba(247, 189, 50, .5);
    justify-self: center;
}

.institution-info p {
    margin: 0;

    color: rgba(255, 255, 255, .72);

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================
   RADIAL POSITIONS
========================================= */


/* TOP */

.institution-1 {
    left: 50%;
    top: 0;

    transform: translateX(-50%);
}


/* TOP RIGHT */

.institution-2 {
    right: 35px;
    top: 75px;
}


/* RIGHT */

.institution-3 {
    right: -5px;
    top: 255px;
}


/* BOTTOM RIGHT */

.institution-4 {
    right: 35px;
    bottom: 55px;
}


/* BOTTOM */

.institution-5 {
    left: 50%;
    bottom: -5px;

    transform: translateX(-50%);
}


/* BOTTOM LEFT */

.institution-6 {
    left: 35px;
    bottom: 55px;
}


/* LEFT */

.institution-7 {
    left: -5px;
    top: 255px;
}


/* TOP LEFT */

.institution-8 {
    left: 35px;
    top: 75px;
}


/* =========================================
   GOLD CONNECTING STRIPS
========================================= */

.institution-line {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 235px;
    height: 2px;

    transform-origin: left center;

    z-index: 3;

    background:
        linear-gradient(90deg,
            rgba(247, 189, 50, .15),
            #f7bd32 35%,
            #fff 50%,
            #f7bd32 65%,
            rgba(247, 189, 50, .10));

    box-shadow:
        0 0 5px rgba(247, 189, 50, .8),
        0 0 14px rgba(247, 189, 50, .35);
}


/* =========================================
   GOLD SHINE MOVEMENT
========================================= */

.institution-line::after {
    content: "";

    position: absolute;

    top: -3px;
    left: -50px;

    width: 55px;
    height: 8px;

    border-radius: 50%;

    background:
        linear-gradient(90deg,
            transparent,
            #fff,
            transparent);

    filter: blur(1px);

    opacity: .9;

    animation: lineShine 2.4s linear infinite;
}


/* =========================================
   LINE ROTATIONS
========================================= */

.line-1 {
    transform: rotate(-90deg);
}

.line-2 {
    transform: rotate(-45deg);
}

.line-3 {
    transform: rotate(0deg);
}

.line-4 {
    transform: rotate(45deg);
}

.line-5 {
    transform: rotate(90deg);
}

.line-6 {
    transform: rotate(135deg);
}

.line-7 {
    transform: rotate(180deg);
}

.line-8 {
    transform: rotate(225deg);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes lineShine {

    0% {
        left: -60px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 250px;
        opacity: 0;
    }
}


@keyframes centerGlow {

    0%,
    100% {
        transform: scale(.9);
        opacity: .45;
    }

    50% {
        transform: scale(1.08);
        opacity: .85;
    }
}


@keyframes dotPulse {

    0%,
    100% {
        transform: scale(.8);
        opacity: .7;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}


/* =========================================
   HOVER LINE EFFECT
========================================= */

.institutions-orbit:hover .institution-line {
    box-shadow:
        0 0 7px #f7bd32,
        0 0 17px rgba(247, 189, 50, .75);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .institutions-orbit {
        width: 760px;
        height: 580px;
    }

    .institution-item {
        width: 220px;
    }

    .institution-image-wrap,
    .institution-image {
        width: 95px;
        height: 95px;
    }

    .institution-icon {
        width: 28px;
        height: 28px;

        font-size: 12px;
    }

    .institution-info {
        width: 115px;
    }

    .institution-info h4 {
        font-size: 13px;
    }

    .institution-info p {
        font-size: 9px;
    }

    .institution-line {
        width: 200px;
    }

    .institution-center,
    .center-logo {
        width: 145px;
        height: 145px;
    }

    .institution-2 {
        right: 20px;
    }

    .institution-4 {
        right: 20px;
    }

    .institution-6 {
        left: 20px;
    }

    .institution-8 {
        left: 20px;
    }

    .institution-3 {
        right: -25px;
    }

    .institution-7 {
        left: -25px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .our-institutions {
        padding: 60px 0 70px;
    }

    .our-institutions-header h2 {
        font-size: 30px;
    }

    .our-institutions-header p {
        padding: 0 20px;
        font-size: 12px;
    }

    .institutions-orbit {
        width: 100%;
        max-width: 520px;
        height: 520px;

        margin-top: 35px;
    }

    .institution-center {
        width: 110px;
        height: 110px;
    }

    .center-logo {
        width: 110px;
        height: 110px;
    }

    .institution-item {
        width: 135px;
        height: 85px;
    }

    .institution-image-wrap,
    .institution-image {
        width: 72px;
        height: 72px;
    }

    .institution-content {
        gap: 8px;
    }

    .institution-icon {
        width: 24px;
        height: 24px;

        right: -2px;
        bottom: 0;

        font-size: 10px;
    }

    .institution-info {
        width: 65px;
    }

    .institution-info h4 {
        font-size: 9px;
        line-height: 1.2;
    }

    .institution-info h4::after {
        width: 30px;
        margin-top: 4px;
    }

    .institution-info p {
        font-size: 7px;
        line-height: 1.3;
    }

    .institution-line {
        width: 125px;
    }


    /* TOP */

    .institution-1 {
        top: 0;
    }


    /* TOP RIGHT */

    .institution-2 {
        right: 5px;
        top: 65px;
    }


    /* RIGHT */

    .institution-3 {
        right: -10px;
        top: 205px;
    }


    /* BOTTOM RIGHT */

    .institution-4 {
        right: 5px;
        bottom: 55px;
    }


    /* BOTTOM */

    .institution-5 {
        bottom: 0;
    }


    /* BOTTOM LEFT */

    .institution-6 {
        left: 5px;
        bottom: 55px;
    }


    /* LEFT */

    .institution-7 {
        left: -10px;
        top: 205px;
    }


    /* TOP LEFT */

    .institution-8 {
        left: 5px;
        top: 65px;
    }

    .institutions-orbit::before {
        width: 270px;
        height: 270px;
    }

    .institutions-orbit::after {
        width: 190px;
        height: 190px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .our-institutions-header h2 {
        font-size: 26px;
    }

    .institutions-orbit {
        height: 450px;
    }

    .institution-center,
    .center-logo {
        width: 90px;
        height: 90px;
    }

    .institution-item {
        width: 110px;
    }

    .institution-image-wrap,
    .institution-image {
        width: 60px;
        height: 60px;
    }

    .institution-icon {
        width: 21px;
        height: 21px;
        font-size: 9px;
    }

    .institution-info {
        width: 55px;
    }

    .institution-info h4 {
        font-size: 8px;
    }

    .institution-info p {
        font-size: 6.5px;
    }

    .institution-line {
        width: 105px;
    }

    .institution-2 {
        right: 0;
        top: 55px;
    }

    .institution-4 {
        right: 0;
        bottom: 45px;
    }

    .institution-6 {
        left: 0;
        bottom: 45px;
    }

    .institution-8 {
        left: 0;
        top: 55px;
    }

    .institution-3 {
        right: -15px;
        top: 180px;
    }

    .institution-7 {
        left: -15px;
        top: 180px;
    }
}


/* new extra  */
/* 1st Circle - Text Top */
.institution-top {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    margin-top: -55px;

}

.institution-top .institution-info {
    margin: 0 0 15px;
    width: 180px;
}

/* 5th Circle - Text Bottom */
.institution-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.institution-bottom .institution-info {
    margin: 15px 0 0;
    width: 180px;
}


/* */
/* ====================================================
EVENT SECTION END ON HOME PAGE 
==================================================== */

/* ===================================================
FACILITES SECTIONS START
======================================================== */
/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8faff;
}

.facilities-section {
    position: relative;
    overflow: hidden;
    padding: 38px 40px;
    background-image: url("../images/background/activity-2-home.png");
    background-size: cover;
    background-repeat: no-repeat;
}


/* =========================================
   BACKGROUND DECORATION
========================================= */



.decor-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    width: 18px;
    height: 18px;
    left: 4%;
    top: 42%;
    background: #ffe35b;
}

.circle-2 {
    width: 14px;
    height: 14px;
    right: 5%;
    top: 68%;
    background: #f26b7a;
}

.circle-3 {
    width: 38px;
    height: 38px;
    right: 6%;
    bottom: 16%;
    background: linear-gradient(145deg, #b895f4, #6e3db6);
}


/* =========================================
   HEADER
========================================= */

.facilities-header {
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
}

.header-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;

    border: 2px solid #f4a01b;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f4a01b;
    font-size: 30px;
}

.explore-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: #ed9415;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.explore-title span {
    width: 22px;
    height: 3px;
    background: #ed9415;
    border-radius: 10px;
}

.facilities-header h2 {
    margin: 0;

    color: #12315d;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: 1px;
}

.facilities-header p {
    margin: 8px 0 12px;

    color: #444;
    font-size: 16px;
}

.header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.header-line span {
    display: block;
    width: 70px;
    height: 3px;

    background: #f29b1b;
    border-radius: 10px;
}

.header-line i {
    width: 6px;
    height: 6px;

    display: block;
    background: #f29b1b;
    border-radius: 50%;
}


/* =========================================
   CARDS
========================================= */

.facilities-row {
    position: relative;
    z-index: 2;
}

.facility-card {
    position: relative;
    height: 100%;

    border-radius: 25px;
    overflow: visible;

    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-7px);
}


/* IMAGE */

.facility-image {
    position: relative;
    width: 100%;
    height: 245px;

    overflow: hidden;

    border-radius: 20px 20px 0px 0px;
    background: #ddd;

    box-shadow: 0 8px 25px rgba(20, 50, 90, 0.12);
}

.facility-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.06);
}


/* =========================================
   WHITE CONTENT BOX
========================================= */

.facility-content {
    position: relative;

    min-height: 128px;

    margin-top: -10px;
    padding: 43px 22px 18px;

    text-align: center;

    background: #ffffff;

    border-radius: 0px 0px 20px 20px;

    box-shadow:
        0 8px 25px rgba(23, 48, 80, 0.10);

    z-index: 3;
}


/* =========================================
   CIRCLE ICON
========================================= */

.facility-icon {
    position: absolute;

    top: -35px;
    left: 50%;

    width: 70px;
    height: 70px;

    transform: translateX(-50%);

    border: 6px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 27px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);

    background-image: url("../images/background/hoame-page-facilites.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.icon-orange {
    background: linear-gradient(145deg, #ffbd2e, #ef870d);
}

.icon-green {
    background: linear-gradient(145deg, #8bd34f, #3d9e45);
}

.icon-purple {
    background: linear-gradient(145deg, #b65cf0, #7627bb);
}

.icon-yellow {
    background: linear-gradient(145deg, #ffda35, #f2a800);
}

.icon-violet {
    background: linear-gradient(145deg, #8848ec, #531db8);
}

.icon-blue {
    background: linear-gradient(145deg, #4fc4ef, #0875c5);
}

.icon-pink {
    background: linear-gradient(145deg, #ff6598, #e82769);
}


/* =========================================
   CARD TEXT
========================================= */

.facility-content h3 {
    color: #102e5a;

    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.facility-content p {
    max-width: 270px;
    margin: 0 auto;

    color: #404040;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================
   FOOTER TAGLINE
========================================= */

.facility-footer {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 25px;
}

.footer-tagline {
    min-width: 445px;

    padding: 10px 35px;

    text-align: center;

    background: linear-gradient(90deg,
            #123d72,
            #0b3468);

    border-radius: 30px;

    color: #fff;

    font-size: 17px;
    letter-spacing: 0.5px;

    box-shadow: 0 5px 15px rgba(20, 55, 100, 0.15);
}

.footer-tagline span {
    margin-right: 5px;
}

.footer-tagline strong {
    color: #f7b32b;
}


/* FOOTER DOTS */

.footer-dots {
    display: flex;
    gap: 5px;
}

.footer-dots span {
    width: 5px;
    height: 5px;

    border-radius: 50%;
    background: #ed921b;
}

.right-dots span {
    background: #42319d;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .facility-image {
        height: 220px;
    }

    .facility-content {
        min-height: 135px;
    }

    .footer-tagline {
        min-width: 400px;
    }
}


@media (max-width: 991px) {

    .facilities-section {
        padding: 45px 0 30px;
    }

    .facility-image {
        height: 230px;
    }

    .facilities-header h2 {
        font-size: 45px;
    }

    .facility-footer {
        margin-top: 30px;
    }

    .footer-tagline {
        min-width: auto;
        width: 80%;
    }

    .left-dots,
    .right-dots {
        display: none;
    }
}


@media (max-width: 767px) {

    .facilities-section {
        padding: 40px 15px 25px;
    }

    .facilities-header {
        margin-bottom: 30px;
    }

    .header-icon {
        width: 55px;
        height: 55px;
        font-size: 25px;
    }

    .facilities-header h2 {
        font-size: 36px;
    }

    .facilities-header p {
        font-size: 14px;
    }

    .facility-image {
        height: 240px;
    }

    .facility-content {
        min-height: 125px;
    }

    .facility-footer {
        margin-top: 25px;
    }

    .footer-tagline {
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
    }
}


@media (max-width: 575px) {

    .facilities-header h2 {
        font-size: 31px;
    }

    .explore-title {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .facility-image {
        height: 230px;
    }

    .facility-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .facility-content h3 {
        font-size: 18px;
    }

    .facility-content p {
        font-size: 13px;
    }
}

/* ===================================================
FACILITES SECTIONS END
======================================================== */

/* =======================================================
ADIMISSION PROCESS START
========================================================= */

/* =====================================================
   SECTION
===================================================== */

.our-journy {
    position: relative;
    overflow: hidden;

    padding: 65px 0 55px;

    background:
        radial-gradient(circle at 50% 40%,
            rgba(220, 231, 246, 0.65),
            transparent 48%),
        #f8fbff;

    color: #142b4d;

    background-image: url("../images/background/home-page-admission.png");
    background-repeat: no-repeat;
    background-size: cover;
}


/* =====================================================
   BACKGROUND DECORATION
===================================================== */

.our-journy-bg {
    position: absolute;
    pointer-events: none;
}

.our-journy-bg-left {
    width: 400px;
    height: 400px;

    top: -180px;
    left: -180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(210, 222, 241, 0.55),
            transparent 70%);
}

.our-journy-bg-right {
    width: 450px;
    height: 450px;

    right: -260px;
    bottom: -230px;

    border-radius: 50%;

    border: 45px solid rgba(8, 41, 87, 0.035);
}

.our-journy-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.our-journy-circle-1 {
    width: 28px;
    height: 28px;

    left: 23%;
    top: 15%;

    border: 5px solid rgba(231, 168, 23, 0.25);
}

.our-journy-circle-2 {
    width: 28px;
    height: 28px;

    right: 6%;
    top: 20%;

    border: 5px solid #e7a817;
}


/* =====================================================
   HEADING
===================================================== */

.our-journy-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 48px;
}


/* TOP ROUND ICON */

.our-journy-top-icon {
    position: relative;

    width: 80px;
    height: 80px;

    margin: 0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #e7a817;

    font-size: 34px;

    background:
        linear-gradient(145deg,
            #123d73,
            #061e43);

    border: 3px solid #e7a817;

    box-shadow:
        0 8px 20px rgba(8, 41, 87, 0.20);
}

.our-journy-top-icon::before,
.our-journy-top-icon::after {
    content: "";

    position: absolute;

    top: 20px;

    width: 30px;
    height: 35px;

    border-top: 2px solid #e7a817;
    border-bottom: 2px solid #e7a817;
}



/* SMALL TITLE */

.our-journy-small-title {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 8px;

    color: #c91422;

    font-size: 17px;
    letter-spacing: 3px;
}

.our-journy-small-title span {
    position: relative;

    width: 42px;
    height: 2px;

    background: #082957;
}

.our-journy-small-title span::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c91422;

    transform: translateY(-50%);
}

.our-journy-small-title span:first-child::after {
    right: -8px;
}

.our-journy-small-title span:last-child::after {
    left: -8px;
}


/* MAIN HEADING */

.our-journy-heading h2 {
    margin: 0;

    color: #082957;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

    letter-spacing: 1px;

    line-height: 1.1;
}

.our-journy-heading h2 strong {
    color: #c91422;
}


/* STARS */

.our-journy-stars {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin: 14px 0;
}

.our-journy-stars span {
    width: 52px;
    height: 3px;

    border-radius: 5px;

    background: #e7a817;
}

.our-journy-stars i {
    color: #e7a817;

    font-size: 17px;
}

.our-journy-heading>p {
    max-width: 720px;

    margin: 0 auto;

    color: #34445d;

    font-size: 17px;

    line-height: 1.65;
}


/* =====================================================
   PROCESS CARDS
===================================================== */

.our-journy-process {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 38px;
}


/* =====================================================
   CARD
===================================================== */

.our-journy-item {
    position: relative;
}

.our-journy-card {
    position: relative;

    min-height: 420px;

    padding: 92px 25px 85px;

    text-align: center;

    background: #ffffff;

    border-radius: 0 0 24px 24px;

    box-shadow:
        0 16px 35px rgba(22, 54, 92, 0.13);

    overflow: visible;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.our-journy-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 42px rgba(22, 54, 92, 0.18);
}


/* =====================================================
   TOP NUMBER HOLDER
===================================================== */

.our-journy-number-top {
    position: absolute;

    top: -27px;
    left: 50%;

    width: 180px;
    height: 80px;

    transform: translateX(-50%);

    background: #082957;

    clip-path: polygon(12% 0,
            88% 0,
            100% 28%,
            86% 28%,
            82% 72%,
            70% 100%,
            30% 100%,
            18% 72%,
            14% 28%,
            0 28%);

    z-index: 5;
}

.our-journy-card-red .our-journy-number-top {
    background: #c91422;
}


/* NUMBER CIRCLE */

.our-journy-number {
    position: absolute;

    top: 8px;
    left: 50%;

    width: 62px;
    height: 62px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(145deg,
            #ffd96a,
            #e4a313);

    border: 2px solid #f4c94d;

    color: #082957;

    font-family: Georgia, serif;

    font-size: 26px;
    font-weight: 800;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.15);
}

.our-journy-card-red .our-journy-number {
    color: #b50d19;
}


/* =====================================================
   MAIN CARD ICON
===================================================== */

.our-journy-main-icon {
    width: 118px;
    height: 118px;

    margin: -22px auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #082957;

    font-size: 47px;

    background:
        linear-gradient(145deg,
            #f0f4fb,
            #e4ebf7);

    box-shadow:
        inset 0 0 0 1px rgba(8, 41, 87, 0.04);
}

.our-journy-card-red .our-journy-main-icon {
    color: #c91422;

    background:
        linear-gradient(145deg,
            #fff0f1,
            #fbe0e2);
}


/* =====================================================
   CARD HEADING
===================================================== */

.our-journy-card h3 {
    margin: 0;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #082957;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
    font-weight: 800;

    line-height: 1.25;
}

.our-journy-card-red h3 {
    color: #c91422;
}


/* =====================================================
   GOLD LINE
===================================================== */

.our-journy-card-line {
    width: 52px;
    height: 3px;

    margin: 9px auto 14px;

    border-radius: 10px;

    background: #e7a817;
}


/* =====================================================
   CARD DESCRIPTION
===================================================== */

.our-journy-card p {
    max-width: 270px;

    margin: 0 auto;

    color: #40506a;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   CARD BOTTOM DESIGN
===================================================== */

.our-journy-card-bottom {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 62px;

    overflow: hidden;

    border-radius: 0 0 24px 24px;

    background: #082957;
}


/* RED CARD */

.our-journy-card-red .our-journy-card-bottom {
    background: #c91422;
}


/* CURVED GOLD TOP */

.our-journy-bottom-curve {
    position: absolute;

    left: -5%;
    top: -21px;

    width: 110%;
    height: 40px;

    background: #e7a817;

    border-radius: 50% 50% 0 0;
}

.our-journy-bottom-curve::after {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;

    width: 100%;
    height: 30px;

    background: #082957;

    border-radius: 50% 50% 0 0;
}

.our-journy-card-red .our-journy-bottom-curve::after {
    background: #c91422;
}


/* =====================================================
   ARROW CIRCLE
===================================================== */

.our-journy-arrow {
    position: absolute;

    left: 50%;
    bottom: 10px;

    width: 48px;
    height: 48px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #082957;

    border: 3px solid #e7a817;

    color: #e7a817;

    font-size: 22px;

    z-index: 3;

    transition: all 0.3s ease;
}

.our-journy-card-red .our-journy-arrow {
    background: #c91422;
}

.our-journy-card:hover .our-journy-arrow {
    transform:
        translateX(-50%) scale(1.1);
}


/* =====================================================
   CONNECTORS BETWEEN CARDS
===================================================== */

.our-journy-connectors {
    position: absolute;

    left: 0;
    right: 0;

    top: 505px;

    z-index: 8;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    pointer-events: none;


    padding: 0 20%;
}

.our-journy-connector {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0;
}

.our-journy-connector span {
    width: 45px;
    height: 3px;

    background: #e7a817;
}

.our-journy-connector i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #082957;

    border: 2px solid #e7a817;

    color: #e7a817;

    font-size: 14px;
}


/* =====================================================
   FOOTER STRIP
===================================================== */

.our-journy-footer {
    position: relative;
    z-index: 4;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 65px;
}


/* STRIP */

.our-journy-footer-strip {
    position: relative;

    min-width: 650px;

    height: 65px;

    padding: 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    background:
        linear-gradient(90deg,
            #082957,
            #103e78,
            #082957);

    border-top: 2px solid #e7a817;
    border-bottom: 2px solid #e7a817;

    color: #ffffff;

    clip-path: polygon(4% 0,
            96% 0,
            100% 50%,
            96% 100%,
            4% 100%,
            0 50%);

    box-shadow:
        0 10px 22px rgba(8, 41, 87, 0.18);
}


/* TROPHY */

.our-journy-trophy {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e7a817;

    font-size: 31px;
}


/* FOOTER TEXT */

.our-journy-footer-text {
    display: flex;
    align-items: center;

    gap: 18px;
}

.our-journy-footer-text strong {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    letter-spacing: 2px;

    white-space: nowrap;
}

.our-journy-footer-text em {
    color: #e7a817;

    font-style: normal;
}

.our-journy-star {
    color: #e7a817;

    font-size: 16px;
}


/* SIDE LINES */

.our-journy-footer-line {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.our-journy-footer-line span {
    display: block;

    width: 55px;
    height: 2px;

    background: #c91422;
}

.our-journy-footer-line span:nth-child(2) {
    width: 35px;
}

.our-journy-footer-line span:nth-child(3) {
    width: 48px;
}


/* =====================================================
   RESPONSIVE - 1199px
===================================================== */


@media (max-width: 1199px) {

    .our-journy-process {
        gap: 24px;
    }

    .our-journy-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .our-journy-card h3 {
        font-size: 19px;
    }

    .our-journy-card p {
        font-size: 14px;
    }

    .our-journy-footer-strip {
        min-width: 560px;
    }

    .our-journy-connectors {
        top: 505px;
        display: none;

    }
}



/* =====================================================
   RESPONSIVE - 991px
===================================================== */

@media (max-width: 991px) {

    .our-journy {
        padding: 55px 0 45px;
    }

    .our-journy-process {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 55px 25px;
    }

    .our-journy-card {
        min-height: 410px;
    }

    .our-journy-connectors {
        display: none;


    }

    .our-journy-footer {
        margin-top: 55px;
    }

    .our-journy-footer-line {
        display: none;
    }

    .our-journy-footer-strip {
        min-width: 500px;
    }
}


/* =====================================================
   RESPONSIVE - 767px
===================================================== */

@media (max-width: 767px) {

    .our-journy {
        padding: 45px 15px 40px;
    }

    .our-journy-top-icon {
        width: 68px;
        height: 68px;

        font-size: 29px;
    }

    .our-journy-small-title {
        font-size: 13px;

        letter-spacing: 2px;
    }

    .our-journy-heading h2 {
        font-size: 40px;
    }

    .our-journy-heading>p {
        font-size: 15px;
    }

    .our-journy-process {
        grid-template-columns: 1fr;

        max-width: 430px;

        margin: 0 auto;

        gap: 60px;
    }

    .our-journy-card {
        min-height: 410px;
    }

    .our-journy-footer-strip {
        width: 100%;
        min-width: 0;

        padding: 0 30px;
    }

    .our-journy-footer-text strong {
        font-size: 16px;

        letter-spacing: 1px;
    }

    .our-journy-footer-text {
        gap: 10px;
    }
}


/* =====================================================
   RESPONSIVE - 575px
===================================================== */

@media (max-width: 575px) {

    .our-journy-heading h2 {
        font-size: 34px;
    }

    .our-journy-small-title span {
        width: 25px;
    }

    .our-journy-heading>p {
        font-size: 14px;
    }

    .our-journy-card {
        min-height: 405px;
    }

    .our-journy-footer {
        margin-top: 45px;
    }

    .our-journy-footer-strip {
        height: 58px;

        padding: 0 20px;

        gap: 8px;
    }

    .our-journy-trophy {
        width: 35px;
        height: 35px;

        font-size: 24px;
    }

    .our-journy-footer-text strong {
        font-size: 13px;

        letter-spacing: 0.5px;
    }

    .our-journy-star {
        font-size: 11px;
    }
}

/* =======================================================
ADIMISSION PROCESS END
========================================================= */

/* ==================================================
  TESTIMONIAL SECTION START
==================================================== */
/* ==========================================
   TESTIMONIAL SECTION
========================================== */

.testi-slide-section {
    position: relative;
    overflow: hidden;

    padding: 80px 0 70px;

    background:
        radial-gradient(circle at 10% 15%,
            rgba(30, 75, 135, 0.08),
            transparent 23%),
        radial-gradient(circle at 90% 85%,
            rgba(30, 75, 135, 0.06),
            transparent 25%),
        linear-gradient(135deg,
            #ffffff 0%,
            #f4f8fc 100%);
}


/* Background circles */

.testi-slide-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(13, 49, 95, 0.07);

    border-radius: 50%;

    right: -300px;
    top: -220px;
}

.testi-slide-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(13, 49, 95, 0.06);

    border-radius: 50%;

    left: -260px;
    bottom: -250px;
}


/* ==========================================
   HEADING
========================================== */

.testi-slide-heading {
    position: relative;
    z-index: 5;

    margin-bottom: 55px;
}


.testi-slide-subtitle {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    color: #c7191e;

    font-size: 20px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.testi-slide-line {
    position: relative;

    width: 55px;
    height: 2px;

    background: #c7191e;
}


.testi-slide-line::before,
.testi-slide-line::after {
    content: "";

    position: absolute;

    top: -2px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #c7191e;
}

.testi-slide-line::before {
    left: -3px;
}

.testi-slide-line::after {
    right: -3px;
}


.testi-slide-title {
    margin: 8px 0 12px;

    color: #0c2d5b;

    font-family: Georgia, serif;

    font-size: 65px;

    font-weight: 700;

    line-height: 1.1;
}

.testi-slide-title span {
    color: #c7191e;
}


.testi-slide-title-stars {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 15px;
}

.testi-slide-title-stars span {
    width: 55px;
    height: 2px;

    background: #e4ad1c;
}

.testi-slide-title-stars .testi-slide-icon {
    color: #e4ad1c;

    font-size: 18px;
}


.testi-slide-description {
    margin: 0;

    color: #303947;

    font-size: 16px;

    line-height: 1.6;
}


/* ==========================================
   SLIDER
========================================== */

.testi-slide-slider {
    position: relative;

    z-index: 5;

    width: 100%;

    padding: 0 75px;
}


.testi-slide-viewport {
    width: 100%;

    overflow: hidden;

    padding: 45px 0 35px;
}


.testi-slide-track {
    display: flex;

    align-items: center;

    gap: 20px;

    will-change: transform;

    transition: transform 0.6s cubic-bezier(0.25,
            0.8,
            0.25,
            1);
}


/* ==========================================
   CARD
========================================== */

.testi-slide-card {
    position: relative;

    flex: 0 0 calc((100% - 40px) / 3);

    min-height: 460px;

    padding: 38px 35px 70px;

    background: #ffffff;

    border-radius: 18px;

    border: 2px solid transparent;

    box-shadow:
        0 15px 35px rgba(13,
            43,
            82,
            0.10);

    overflow: visible;

    transform: scale(0.94);

    opacity: 0.98;

    transition:
        transform 0.6s ease,
        border 0.4s ease,
        box-shadow 0.4s ease;
}


/* ==========================================
   ACTIVE / CENTER CARD
========================================== */

.testi-slide-card.testi-slide-active {
    transform: scale(1.03);

    border: 2px solid #c7191e;

    box-shadow:
        0 20px 45px rgba(13,
            43,
            82,
            0.17);

    z-index: 5;
}


/* ==========================================
   QUOTE
========================================== */

.testi-slide-quote {
    position: absolute;

    top: 25px;
    left: 28px;

    color: #cce9fb;
}


.testi-slide-quote .testi-slide-icon {
    font-size: 62px;

    line-height: 1;
}


/* ==========================================
   ACTIVE CARD QUOTE
========================================== */

.testi-slide-card.testi-slide-active .testi-slide-quote {

    top: -2px;
    left: 50%;

    transform: translateX(-50%);

    width: 80px;
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f8e4a9;

    border: 3px solid #dda91a;

    border-radius: 11px;

    color: #c7191e;

    box-shadow:
        0 7px 14px rgba(0,
            0,
            0,
            0.14);

    z-index: 10;
}


.testi-slide-card.testi-slide-active .testi-slide-quote .testi-slide-icon {

    font-size: 53px;
}


/* ==========================================
   FEATURED RIBBON
========================================== */

.testi-slide-card.testi-slide-active::before {

    content: "FEATURED REVIEW";

    position: absolute;

    top: -38px;

    left: 40px;
    right: 40px;

    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0d315f;

    color: #ffffff;

    font-size: 19px;

    font-weight: 700;

    letter-spacing: 1px;

    border-radius: 35px 35px 0 0;

    border-bottom: 3px solid #e1ad1e;

    z-index: 8;

    box-shadow:
        0 5px 10px rgba(0,
            0,
            0,
            0.12);
}


/* ==========================================
   RATING
========================================== */

.testi-slide-rating {

    display: flex;

    justify-content: center;

    gap: 5px;

    margin: 82px 0 20px;
}


.testi-slide-rating .testi-slide-icon {

    color: #e2a917;

    font-size: 21px;
}


/* ==========================================
   TEXT
========================================== */

.testi-slide-text {

    max-width: 410px;

    min-height: 120px;

    margin: 0 auto;

    text-align: center;

    color: #343a40;

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================================
   DIVIDER
========================================== */

.testi-slide-divider {

    width: 82%;

    height: 1px;

    margin: 16px auto 25px;

    background: #e2e2e2;
}


/* ==========================================
   USER
========================================== */

.testi-slide-user {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;
}


.testi-slide-image {

    flex: 0 0 90px;

    width: 90px;
    height: 90px;

    overflow: hidden;

    border-radius: 50%;

    background: #e8eef5;

    border: 4px solid #ffffff;

    box-shadow:
        0 4px 12px rgba(0,
            0,
            0,
            0.14);
}


.testi-slide-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.testi-slide-user-info h4 {

    margin: 0 0 5px;

    color: #0d315f;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: 700;
}


.testi-slide-user-info span {

    color: #c7191e;

    font-size: 16px;
}


/* Active user name */

.testi-slide-card.testi-slide-active .testi-slide-user-info h4 {

    color: #c7191e;
}


/* ==========================================
   CARD BOTTOM
========================================== */

.testi-slide-card-bottom {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 60px;

    background: #0d315f;

    border-radius:
        0 0 16px 16px;

    border-top: 3px solid #e2ad1d;

    clip-path: polygon(0 30%,
            30% 48%,
            50% 58%,
            70% 48%,
            100% 30%,
            100% 100%,
            0 100%);
}


/* Active card bottom */

.testi-slide-card.testi-slide-active .testi-slide-card-bottom {

    background: #c7191e;
}


/* ==========================================
   BOTTOM STAR
========================================== */

.testi-slide-bottom-star {

    position: absolute;

    left: 50%;
    bottom: -12px;

    transform: translateX(-50%);

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0d315f;

    border: 3px solid #e1ac1b;

    border-radius: 12px;

    z-index: 20;
}


.testi-slide-bottom-star .testi-slide-icon {

    color: #ffffff;

    font-size: 23px;
}


/* Active star */

.testi-slide-card.testi-slide-active .testi-slide-bottom-star {

    background: #c7191e;
}


/* ==========================================
   ARROWS
========================================== */

.testi-slide-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 62px;
    height: 62px;

    border: none;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0d315f;

    color: #ffffff;

    cursor: pointer;

    z-index: 20;

    box-shadow:
        0 8px 18px rgba(0,
            0,
            0,
            0.16);

    transition: all 0.3s ease;
}


.testi-slide-arrow .testi-slide-icon {

    font-size: 28px;
}


.testi-slide-arrow:hover {

    background: #c7191e;

    transform:
        translateY(-50%) scale(1.08);
}


.testi-slide-prev {
    left: 0;
}


.testi-slide-next {
    right: 0;
}


/* ==========================================
   DOTS
========================================== */

.testi-slide-dots {

    position: relative;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin: 15px 0 35px;
}


.testi-slide-dot {

    width: 22px;
    height: 22px;

    padding: 0;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid #0d315f;

    cursor: pointer;

    transition: all 0.3s ease;
}


.testi-slide-dot-active {

    background: #c7191e;

    border-color: #c7191e;

    transform: scale(1.05);
}


/* ==========================================
   BOTTOM STRIP
========================================== */

.testi-slide-bottom-strip {

    position: relative;

    z-index: 5;

    max-width: 680px;

    min-height: 60px;

    margin: 0 auto;

    padding: 0 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #0d315f;

    border: 2px solid #dda91b;

    border-radius: 50px;

    box-shadow:
        0 12px 25px rgba(13,
            49,
            95,
            0.20);
}


.testi-slide-strip-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    color: #efb52a;
}


.testi-slide-strip-icon .testi-slide-icon {

    font-size: 40px;
}


.testi-slide-strip-text {

    display: flex;

    align-items: center;

    gap: 18px;

    color: #ffffff;

    font-size: 20px;

    letter-spacing: 1.5px;
}


.testi-slide-strip-text b {

    color: #c7191e;

    font-size: 25px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .testi-slide-title {
        font-size: 52px;
    }

    .testi-slide-slider {
        padding: 0 55px;
    }

    .testi-slide-card {
        flex: 0 0 100%;
    }

    .testi-slide-card {
        transform: scale(0.97);
    }

    .testi-slide-card.testi-slide-active {
        transform: scale(1);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .testi-slide-section {
        padding: 55px 0;
    }

    .testi-slide-heading {
        margin-bottom: 45px;
    }

    .testi-slide-subtitle {
        font-size: 14px;
        gap: 10px;
    }

    .testi-slide-line {
        width: 28px;
    }

    .testi-slide-title {
        font-size: 42px;
    }

    .testi-slide-description {
        font-size: 15px;

        padding: 0 15px;
    }

    .testi-slide-slider {
        padding: 0 38px;
    }

    .testi-slide-card {
        min-height: 450px;

        padding-left: 25px;
        padding-right: 25px;
    }

    .testi-slide-card.testi-slide-active::before {
        left: 25px;
        right: 25px;

        font-size: 16px;
    }

    .testi-slide-text {
        font-size: 15px;
    }

    .testi-slide-arrow {
        width: 48px;
        height: 48px;
    }

    .testi-slide-arrow .testi-slide-icon {
        font-size: 22px;
    }

    .testi-slide-strip-text {
        font-size: 13px;
        gap: 8px;
    }

    .testi-slide-bottom-strip {
        padding: 0 20px;
        min-height: 65px;
    }

    .testi-slide-strip-icon .testi-slide-icon {
        font-size: 30px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .testi-slide-title {
        font-size: 35px;
    }

    .testi-slide-card {
        min-height: 450px;
    }

    .testi-slide-user {
        gap: 12px;
    }

    .testi-slide-image {
        width: 70px;
        height: 70px;

        flex-basis: 70px;
    }

    .testi-slide-user-info h4 {
        font-size: 19px;
    }

    .testi-slide-user-info span {
        font-size: 14px;
    }

    .testi-slide-strip-text {
        font-size: 10px;
        gap: 5px;
        letter-spacing: 0.5px;
    }

}

/* ==================================================
  TESTIMONIAL SECTION END
==================================================== */

/* ==================================================
GALLERY SECTION START
=========================================================== */
/* =====================================================
   OUR GALLERY
===================================================== */

.our-gallery {
    position: relative;
    overflow: hidden;

    padding: 38px 40px;

    /* background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f7faff 100%); */
    background-image: url("../images/background/home-page-admission.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}


/* =====================================================
   BACKGROUND DECORATION
===================================================== */

.our-gallery::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -210px;
    bottom: -220px;

    border: 1px solid rgba(20, 67, 120, .08);

    border-radius: 50%;

    box-shadow:
        0 0 0 25px rgba(20, 67, 120, .025),
        0 0 0 50px rgba(20, 67, 120, .018);

    pointer-events: none;
}


.our-gallery::after {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    left: -170px;
    bottom: -100px;

    border: 1px solid rgba(20, 67, 120, .06);

    border-radius: 50%;

    pointer-events: none;
}


/* =====================================================
   HEADER
===================================================== */

.our-gallery-header {

    position: relative;

    z-index: 2;

    margin-bottom: 20px;
}


/* =====================================================
   TOP DECORATION
===================================================== */

.our-gallery-top-decoration {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    height: 15px;

    margin-bottom: 2px;
}


.our-gallery-top-decoration span {

    width: 15px;
    height: 1px;

    background: #dba928;
}


.our-gallery-top-decoration .our-gallery {

    color: #dba928;

    font-size: 9px;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.our-gallery-header h2 {

    margin: 0;

    color: #0c315f;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;

    line-height: 1.05;

    font-weight: 700;
}


.our-gallery-header h2 span {

    color: #c7191e;
}


/* =====================================================
   HEADING LINE
===================================================== */

.our-gallery-heading-line {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin: 5px 0 8px;
}


.our-gallery-heading-line span {

    width: 42px;
    height: 2px;

    background: #dba928;
}


.our-gallery-heading-line .our-gallery {

    color: #dba928;

    font-size: 6px;
}


/* =====================================================
   PARAGRAPH
===================================================== */

.our-gallery-header p {

    max-width: 900px;

    margin: 0 auto;

    color: #333b46;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 400;
}


/* =====================================================
   GALLERY ROW
===================================================== */

.our-gallery-row {

    position: relative;

    z-index: 3;

    margin-left: -8px;
    margin-right: -8px;

    row-gap: 14px;
}


/* =====================================================
   BOOTSTRAP COLUMN SPACING
===================================================== */

.our-gallery-row>div {

    padding-left: 8px;
    padding-right: 8px;
}


/* =====================================================
   CARD
===================================================== */

.our-gallery-card {

    position: relative;

    overflow: hidden;

    width: 100%;

    background: #ffffff;

    border-radius: 10px;

    border: 1px solid rgba(15, 53, 91, .07);

    box-shadow:
        0 4px 12px rgba(25, 54, 82, .12);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.our-gallery-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 9px 20px rgba(25, 54, 82, .18);
}


/* =====================================================
   IMAGE
===================================================== */

.our-gallery-image {

    width: 100%;

    height: 215px;

    overflow: hidden;

    background: #edf2f7;
    font-family: "Poppins", sans-serif !important;
}


.our-gallery-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}


.our-gallery-card:hover .our-gallery-image img {

    transform: scale(1.05);
}


/* =====================================================
   CARD BOTTOM
===================================================== */

.our-gallery-card-bottom {

    display: flex;

    align-items: center;

    min-height: 50px;

    padding: 7px 12px;

    background: #ffffff;

    font-family: "Poppins", sans-serif !important;
}


/* =====================================================
   ICON
===================================================== */

.our-gallery-icon {

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 9px;

    border-radius: 50%;

    color: #ffffff;
}


.our-gallery-icon .our-gallery {

    font-size: 15px;

    line-height: 1;
}


/* =====================================================
   ICON COLORS
===================================================== */

.our-gallery-red {
    background: #ed4c50;
}

.our-gallery-orange {
    background: #f58a21;
}

.our-gallery-green {
    background: #35ae7b;
}

.our-gallery-blue {
    background: #2685ca;
}

.our-gallery-purple {
    background: #7645b8;
}

.our-gallery-yellow {
    background: #f2a914;
}

.our-gallery-cyan {
    background: #28aeb3;
}

.our-gallery-pink {
    background: #e74687;
}


/* =====================================================
   CARD TEXT
===================================================== */

.our-gallery-content {

    min-width: 0;
}


.our-gallery-content h5 {

    margin: 0;

    color: #263b56;

    font-size: 15px;

    line-height: 1.2;

    font-weight: 700;

    white-space: nowrap;
}


/* =====================================================
   CARD UNDERLINE
===================================================== */

.our-gallery-content span {

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 5px;

    background: #e34c52;

    border-radius: 5px;
}


/* Different underline colors */

.our-gallery-card:nth-child(1) .our-gallery-content span {
    background: #ed4c50;
}

.our-gallery-card:nth-child(2) .our-gallery-content span {
    background: #f58a21;
}

.our-gallery-card:nth-child(3) .our-gallery-content span {
    background: #35ae7b;
}

.our-gallery-card:nth-child(4) .our-gallery-content span {
    background: #2685ca;
}

.our-gallery-card:nth-child(5) .our-gallery-content span {
    background: #7645b8;
}

.our-gallery-card:nth-child(6) .our-gallery-content span {
    background: #f2a914;
}

.our-gallery-card:nth-child(7) .our-gallery-content span {
    background: #28aeb3;
}

.our-gallery-card:nth-child(8) .our-gallery-content span {
    background: #e74687;
}


/* =====================================================
   VIEW MORE WRAPPER
===================================================== */

.our-gallery-button-wrap {

    position: relative;

    z-index: 4;

    display: flex;

    justify-content: center;

    margin-top: 20px;
}


/* =====================================================
   VIEW MORE BUTTON
===================================================== */

.our-gallery-view-btn {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    min-width: 175px;

    height: 38px;

    padding: 3px 4px 3px 19px;

    color: #ffffff;

    text-decoration: none;

    background: #12376d;

    border-radius: 25px;

    font-size: 11px;

    font-weight: 600;

    box-shadow:
        0 4px 10px rgba(18, 55, 109, .18);

    transition: all .3s ease;
}


.our-gallery-view-btn:hover {

    color: #ffffff;

    text-decoration: none;

    background: #0d2c59;

    transform: translateY(-2px);
}


/* =====================================================
   BUTTON ARROW
===================================================== */

.our-gallery-view-btn i {



    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: goldenrod;


    font-size: 15px;

    transition: transform .3s ease;

    font-size: 25px;

}


.our-gallery-view-btn:hover .our-gallery {

    transform: translateX(3px);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1200px) {

    .our-gallery .container {

        max-width: 1150px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .our-gallery {

        padding: 45px 0 35px;
    }

    .our-gallery-header h2 {

        font-size: 40px;
    }

    .our-gallery-header p {

        padding: 0 15px;

        font-size: 12px;
    }

    .our-gallery-image {

        height: 145px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .our-gallery {

        padding: 40px 0 30px;
    }

    .our-gallery-header {

        margin-bottom: 20px;
    }

    .our-gallery-header h2 {

        font-size: 36px;
    }

    .our-gallery-header p {

        font-size: 12px;

        line-height: 1.55;
    }

    .our-gallery-header p br {

        display: none;
    }

    .our-gallery-image {

        height: 180px;
    }

    .our-gallery-content h5 {

        font-size: 13px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .our-gallery-header h2 {

        font-size: 32px;
    }

    .our-gallery-heading-line span {

        width: 30px;
    }

    .our-gallery-image {

        height: 170px;
    }

}

/* ==================================================
GALLERY SECTION END
=========================================================== */


/* ============================================================
MESSAGE FROM _ SECTION START ON HOME PAGE 
=========================================================== */
/* ==========================================
   MESSAGE SECTION
========================================== */

.message-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;

    background-image: url("../images/background/home-messages-section.png");
    background-repeat: no-repeat;
    background-size: cover;
}


/* ==========================================
   HEADING
========================================== */

.message-heading {
    text-align: center;
    margin-bottom: 45px;
}

.message-top-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.message-top-title::before,
.message-top-title::after {
    content: "";
    width: 70px;
    height: 2px;
    background: #d7a01d;
}

.message-top-title span {
    color: #d7a01d;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.message-heading h2 {
    margin: 0 0 10px;
    color: #08245a;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.message-heading p {
    margin: 0;
    color: #4f5968;
    font-size: 18px;
}

.message-line {
    display: block;
    width: 80px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 30px;
    background: #d7a01d;
}


/* ==========================================
   CARD
========================================== */

.message-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    background: #fff;
    border-radius: 30px;
    box-shadow: rgba(17, 12, 46, 0.08) 0px 20px 40px;
}

.message-card+.message-card {
    margin-top: 35px;
}


/* ==========================================
   DIRECTOR TOP CORNER
========================================== */

.message-director-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border-top: 5px solid #d7a01d;
    border-left: 5px solid #08245a;
    border-radius: 30px 0 0 0;
    z-index: 2;
}


/* ==========================================
   PRINCIPAL TOP CORNER
========================================== */

.message-principal-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-top: 5px solid #08245a;
    border-right: 5px solid #d7a01d;
    border-radius: 0 30px 0 0;
    z-index: 2;
}


/* ==========================================
   PROFILE IMAGE
========================================== */

.message-profile-box {
    position: relative;
    height: 420px;
    overflow: hidden;
    margin: 5px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.message-profile-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}


/* ==========================================
   NAME STRIP
========================================== */

.message-profile-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #08245a;
    padding: 18px 25px;
    text-align: center;
}

.message-profile-info h4 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.message-profile-info span {
    color: #f2b529;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center !important;
}

.manager-msg {
    border-right: 5px solid #08245a;
    border-radius: 12px solid #08245a;
}

.principal-msg {
    border-left: 5px solid #08245a;
    border-radius: 12px solid #08245a;
}


/* ==========================================
   CONTENT
========================================== */

.message-content {
    padding: 40px 45px;
    text-align: justify;
}


/* ==========================================
   ICON + TITLE
========================================== */

.message-icon-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.message-icon-title img {
    height: 50px;
    width: 50px
}

.message-icon-title i.message {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff5dd;
    color: #08245a;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-icon-title h3 {
    margin: 0;
    color: #08245a;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}


/* ==========================================
   GOLD LINE
========================================== */

.message-small-line {
    display: block;
    width: 50px;
    height: 3px;
    margin: 15px 0 22px;
    border-radius: 30px;
    background: #d7a01d;
}


/* ==========================================
   QUOTE
========================================== */

.message-content h5 {
    position: relative;
    margin: 0 0 18px;
    color: #1b2b54;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    font-style: italic;
    max-width: 700px;
}

.message-content h5::before {
    content: "❝";
    color: #f2b529;
    font-size: 55px;
    line-height: 1;
    margin-right: 10px;
}


/* ==========================================
   TEXT
========================================== */

.message-content p {
    margin-bottom: 12px;
    color: #5f6772;
    font-size: 14px;
    line-height: 1.9;
}


/* ==========================================
   BUTTON
========================================== */

.message-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #08245a;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s ease;
}

.message-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.message-btn i.message {
    font-size: 16px;
}


/* ==========================================
   DESKTOP SPACING
========================================== */

@media(min-width:992px) {

    .message-director-card .message-content {
        padding: 26px 50px;
    }

    .message-principal-card .message-content {
        padding: 40px 50px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media(max-width:991px) {

    .message-heading h2 {
        font-size: 42px;
    }

    .message-profile-box,
    .message-profile-box img {
        height: 320px;
    }

    .message-content {
        padding: 30px;
    }

    .message-icon-title h3 {
        font-size: 24px;
    }

    .message-content h5 {
        font-size: 18px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:767px) {

    .message-section {
        padding: 70px 0;
    }

    .message-heading h2 {
        font-size: 34px;
    }

    .message-heading p {
        font-size: 15px;
    }

    .message-top-title span {
        font-size: 13px;
    }

    .message-top-title::before,
    .message-top-title::after {
        width: 40px;
    }

    .message-content {
        padding: 25px;
    }

    .message-icon-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .message-icon-title h3 {
        font-size: 22px;
    }

    .message-content h5 {
        font-size: 17px;
    }

    .message-profile-info h4 {
        font-size: 18px;
    }

}

/* ============================================================
MESSAGE FROM _ SECTION END ON HOME PAGE 
=========================================================== */


/* ========================================================
    BOTTOM  STRIP SECTION SATART ON HOME PAGE 
======================================================== */
/* ==========================================
   STAY CONNECTED
========================================== */

.sty-connect-section {
    padding: 20px 0px;
    background-image: url("../images/background/bottom-strip-homepage.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 8px solid goldenrod;
}

.sty-connect-wrapper {
    padding: 35px 40px;

    position: relative;
}


/* ==========================================
   LEFT SIDE
========================================== */

.sty-connect-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sty-connect-icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.sty-connect-icon img {
    width: 150px;
    height: auto;
}

.sty-connect-icon .sty-connect {
    font-size: 60px;
    color: #082d75;
}

.sty-connect-content h2 {
    margin: 0 0 5px;

    font-size: 30px;
    line-height: 1;

    font-weight: 700;

    color: #082d75;
}

.sty-connect-content h2 span {
    color: #d7a01d;
}

.sty-connect-content p {
    margin: 0;

    color: #333;

    font-size: 15px;

    font-weight: 400;
}


/* ==========================================
   RIGHT SIDE
========================================== */

.sty-connect-form {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

.sty-connect-input-wrap {
    position: relative;
    flex: 1;
    max-width: 420px;
}

.sty-connect-input-wrap .sty-connect {
    position: absolute;
    left: 22px;
    top: 50%;

    transform: translateY(-50%);

    color: #8a8a8a;
    font-size: 22px;
}

.sty-connect-input-wrap input {
    width: 100%;
    height: 68px;

    padding: 0 20px 0 60px;

    border: 1px solid #dddddd;
    border-radius: 12px;



    font-size: 15px;

    outline: none;
}

.sty-connect-input-wrap input:focus {
    border-color: #082d75;
}

.sty-connect-btn {
    height: 68px;

    padding: 0 35px;

    border: 0;
    border-radius: 12px;

    background: #082d75;

    color: #ffffff;

    font-size: 18px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 12px;

    transition: .3s ease;
}

.sty-connect-btn:hover {
    background: goldenrod;

    color: #fff;

}

.sty-connect-btn .sty-connect {
    font-size: 22px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .sty-connect-wrapper {
        padding: 30px;
    }

    .sty-connect-left {
        margin-bottom: 25px;
    }

    .sty-connect-content h2 {
        font-size: 40px;
    }

    .sty-connect-content p {
        font-size: 16px;
    }

    .sty-connect-form {
        justify-content: flex-start;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .sty-connect-wrapper {
        padding: 25px 20px;
    }

    .sty-connect-left {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .sty-connect-content h2 {
        font-size: 32px;
    }

    .sty-connect-content p {
        font-size: 15px;
    }

    .sty-connect-form {
        flex-direction: column;
        gap: 15px;
    }

    .sty-connect-input-wrap {
        max-width: 100%;
        width: 100%;
    }

    .sty-connect-btn {
        width: 100%;
        justify-content: center;
        font-size: 18px;
    }

}

/* ========================================================
    BOTTOM  STRIP SECTION END ON HOME PAGE 
======================================================== */

/* =====================================================
MISSION SECTION START
======================================================= */
/* ================= OUR PURPOSE ================= */
/* ================= ICON AREA ================= */

.mission-etc {
    padding: 90px 1px;

    background-image: url("../images/background/mission-cards-home.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.our-purpose-card {


    padding: 40px;

    box-shadow: rgba(100, 100, 111, 0.12) 0px 7px 29px 0px;
    background-color: lightcyan;

}



/* heaings  */

/* ================= HEADING ================= */

.our-purpose-heading {
    max-width: 900px;
    margin: auto;
}

.our-purpose-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.our-purpose-badge::before,
.our-purpose-badge::after {
    content: "";
    width: 70px;
    height: 2px;
    background: #f3c117;
    position: relative;
}

.our-purpose-badge::before {
    box-shadow: 60px 0 0 -4px #f3c117;
}

.our-purpose-badge::after {
    box-shadow: -60px 0 0 -4px #f3c117;
}

.our-purpose-badge span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #2a2b74;
    text-transform: uppercase;
}

/* Main Heading */

.our-purpose-heading h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 3px;
    color: #1d1c78;
}

.our-purpose-heading .dark {
    color: #1d1c78;
}

.our-purpose-heading .yellow {
    color: #f3c117;
}

.our-purpose-heading .red {
    color: #ec1e26;
}

/* Graduation Icon */

.our-purpose-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}



.our-purpose-icon i {
    font-size: 40px;
    color: #7da2db;
    margin: 0 18px;
}

/* Paragraph */

.our-purpose-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: #4d4d4d;

    margin: auto;
    font-weight: 500;
}

/* Responsive */

@media(max-width:991px) {

    .our-purpose-heading h2 {
        font-size: 52px;
    }

}

@media(max-width:767px) {

    .our-purpose-heading h2 {
        font-size: 36px;
    }

    .our-purpose-heading p {
        font-size: 16px;
    }

    .our-purpose-badge::before,
    .our-purpose-badge::after {
        width: 40px;
    }
}

.our-purpose-icon-wrap {
    margin-bottom: 35px;
}

.our-purpose-icon-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Rotating Ring */

.our-purpose-icon-circle::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px dashed;
    animation: our-purpose-spin 15s linear infinite;
}

@keyframes our-purpose-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Icon Image */

.our-purpose-icon-circle img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* ================= MISSION ================= */
.mission-card {
    background-image: url("../images/background/mission.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;

}

.mission-card .our-purpose-icon-circle {
    background: #1d1c78;
}

.mission-card .our-purpose-icon-circle::before {
    border-color: #1d1c78;
}

.mission-card .our-purpose-line {
    background: #1d1c78;
}

.mission-card h3 {
    color: #1d1c78;
}

/* ================= VISION ================= */
.vision-card {
    background-image: url("../images/background/vision.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
}

.vision-card .our-purpose-icon-circle {
    background: #ffc107;
}

.vision-card .our-purpose-icon-circle::before {
    border-color: #ffc107;
}

.vision-card .our-purpose-line {
    background: #ffc107;
}

.vision-card h3 {
    color: #ffc107;
}

/* ================= VALUES ================= */

.values-card {
    background-image: url("../images/background/value.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
}

.values-card .our-purpose-icon-circle {
    background: #ec1e26;
}

.values-card .our-purpose-icon-circle::before {
    border-color: #ec1e26;
}

.values-card .our-purpose-line {
    background: #ec1e26;
}

.values-card h3 {
    color: #ec1e26;
}

/* ================= CONTENT ================= */

.our-purpose-content {
    text-align: left;
}

.our-purpose-line {
    width: 60px;
    height: 4px;
    border-radius: 20px;
    display: block;
    margin-bottom: 18px;
}

.our-purpose-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.our-purpose-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;

    padding-left: 20px;

    text-align: justify;
}

/* =====================================================
MISSIN SECTION END
======================================================= */


/* =======================================================
FOOTER SECTION START
======================================================== */
/* =========================================================
   SCHOOL FOOTER
========================================================= */

.school-footer {
    position: relative;

    overflow: hidden;

    background: #10294d;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
}


/* =========================================================
   TOP FOOTER
========================================================= */

.school-footer-top {
    position: relative;

    padding: 55px 16px 1px;

    background:
        linear-gradient(rgba(10, 32, 68, 0.98),
            rgba(14, 40, 76, 0.98));
}


.school-footer-top::after {
    content: "";

    position: absolute;

    top: 55px;
    right: -20px;

    width: 320px;
    height: 260px;

    opacity: 0.08;

    background:
        linear-gradient(135deg,
            transparent 20%,
            #3985cc 21%,
            transparent 22%);

    pointer-events: none;
}


/* =========================================================
   MAIN ROW
========================================================= */

.footer-main-row {
    position: relative;

    z-index: 2;
}


.footer-col {
    position: relative;

    padding-left: 38px;
    padding-right: 38px;
}


/* COLUMN DIVIDERS */

.footer-col:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 88%;

    background: rgba(255, 255, 255, 0.14);
}


/* =========================================================
   SCHOOL BRAND
========================================================= */

.footer-school-brand {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 25px;
}


.footer-school-logo {
    width: 180px;
    max-width: 180px;

    height: auto;

    object-fit: contain;

    border-radius: 15%;
}


.footer-school-title {
    padding-left: 5px;
}


.footer-school-title h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-family: "Merriweather", serif;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.3;
}


.footer-school-title p {
    margin: 0;

    color: #f6ca56;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;
}


.footer-school-title p span {
    margin: 0 5px;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.footer-about-text {
    max-width: 500px;

    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
    line-height: 1.9;
    text-align: justify;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social-icons {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 14px;
}


.footer-social {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.38);

    border-radius: 50%;

    color: #ffffff;

    font-size: 21px;

    text-decoration: none !important;

    transition: all 0.3s ease;
}


.footer-social:hover {
    color: #ffffff;

    transform: translateY(-5px);

    border-color: #f6c44f;
}


.footer-social.facebook:hover {
    background: #1877f2;
}


.footer-social.instagram:hover {
    background: #d62976;
}


.footer-social.youtube:hover {
    background: #ff0000;
}


.footer-social.google:hover {
    background: #4285f4;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 28px;
}


.footer-heading-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 52px;

    border: 2px solid #d6b044;

    border-radius: 50%;

    color: #f6c44f;

    font-size: 21px;

    box-shadow:
        0 0 0 3px rgba(44, 99, 165, 0.25);
}


/* ==================================
   FOOTER HEADING CONTENT
 ================================== */
/* .accordion-icon-f {
    font-size: 70px;
} */

.footer-heading-content {
    flex: 1;

    min-width: 0;
}


.footer-heading h4 {
    margin: 0 0 9px;

    color: #ffffff;

    font-family: "Merriweather", serif;

    font-size: 24px;
    font-weight: 700;

    white-space: nowrap;
}


/* GOLD LINE */

.footer-heading-content>span {
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    background: rgba(255, 255, 255, 0.22);
}


.footer-heading-content>span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 70%;

    height: 2px;

    background: #d6b044;
}


.footer-heading-content>span::after {
    content: "";

    position: absolute;

    left: 48%;

    top: -3px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #f6c44f;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-links li {
    margin-bottom: 14px;
}


.footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    text-decoration: none;

    transition: all 0.3s ease;
}


.footer-links a i {
    color: #f6c44f;

    font-size: 13px;

    transition: 0.3s ease;
}


.footer-links a:hover {
    color: #f6c44f;

    transform: translateX(5px);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.footer-contact-column {
    padding-left: 42px;
}


.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 22px;
}


.footer-contact-icon {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 56px;

    border: 2px solid #d6b044;

    border-radius: 50%;

    color: #ffffff;

    font-size: 23px;

    box-shadow:
        0 0 0 3px rgba(44, 99, 165, 0.25);
}


.footer-contact-text {
    padding-top: 2px;
}


.footer-contact-text h5 {
    margin: 0 0 5px;

    color: #f6c44f;

    font-size: 19px;
    font-weight: 600;
}


.footer-contact-text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.83);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   GOLDEN CURVED STRIP
========================================================= */
.footer-golden-strip img {
    width: 100%;
    height: auto;

}

/* =========================================================
   CENTER EMBLEM
========================================================= */

.footer-center-logo {
    position: absolute;

    left: 50%;

    bottom: 45px;

    transform: translateX(-50%);

    z-index: 10;
}


.footer-center-logo img {
    width: 190px;

    height: auto;

    display: block;
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.school-footer-bottom {
    position: relative;

    min-height: 50px;

    display: flex;

    align-items: flex-end;

    padding: 10px;

    background:
        linear-gradient(135deg,
            #0b2346,
            #112f5d);

    border-bottom: 3px solid #183c70;
    margin-right: 2px;
    border-top: 3px solid rgb(246, 202, 86);
}


/* =========================================================
   BOTTOM ROW
========================================================= */

.footer-bottom-row {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 7px;
}


.footer-copyright,
.footer-bottom-links {
    display: flex;

    align-items: center;
}


.footer-copyright {
    gap: 12px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;

    white-space: nowrap;
}


.footer-copyright>i {
    color: #f6c44f;

    font-size: 25px;
}


.footer-copyright b {
    color: rgba(255, 255, 255, 0.45);

    font-weight: 400;
}


.footer-copyright a {
    color: #d7b34e;

    text-decoration: none;
}


/* =========================================================
   BOTTOM LINKS
========================================================= */

.footer-bottom-links {
    gap: 25px;
}


.footer-bottom-links a {
    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;

    text-decoration: none;

    white-space: nowrap;

    transition: 0.3s ease;
}


.footer-bottom-links a i {
    color: #c9d4e7;

    font-size: 22px;
}


.footer-bottom-links a:hover {
    color: #f6c44f;
}


.footer-bottom-links>span {
    width: 1px;
    height: 30px;

    background: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   TAGLINE
========================================================= */

.footer-tagline {
    position: relative;

    color: #b5c6e2;

    font-family: "Merriweather", serif;

    font-size: 19px;
    font-style: italic;

    white-space: nowrap;
}


.footer-tagline::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -10px;

    height: 2px;

    background: #d6b044;
}


/* =========================================================
   RESPONSIVE
========================================================= */


/* LAPTOP */

@media (max-width: 1399px) {

    .school-footer-top {
        padding-left: 25px;
        padding-right: 25px;
    }


    .footer-col {
        padding-left: 25px;
        padding-right: 25px;
    }


    .footer-school-logo {
        width: 145px;
    }


    .footer-school-title h3 {
        font-size: 23px;
    }


    .footer-school-title p {
        font-size: 15px;
    }


    .footer-heading h4 {
        font-size: 20px;
    }


    .footer-bottom-row {
        gap: 18px;
    }


    .school-footer-bottom {
        padding-left: 25px;
        padding-right: 25px;
    }

}


/* TABLET */

@media (max-width: 991px) {

    .school-footer-top {
        padding-bottom: 120px;
    }


    .footer-col {
        margin-bottom: 50px;
    }


    .footer-col:nth-child(2)::after {
        display: none;
    }


    .footer-contact-column {
        padding-left: 25px;
    }


    .footer-bottom-row {
        flex-wrap: wrap;

        justify-content: center;

        text-align: center;
    }


    .footer-copyright,
    .footer-bottom-links {
        justify-content: center;
    }


    .footer-tagline {
        width: 100%;

        text-align: center;
    }


    .footer-tagline::after {
        left: 50%;

        width: 250px;

        right: auto;

        transform: translateX(-50%);
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .school-footer-top {
        padding: 50px 15px 110px;
    }


    .footer-col {
        padding-left: 15px;
        padding-right: 15px;
    }


    .footer-col::after {
        display: none;
    }


    .footer-school-brand {
        gap: 15px;
    }


    .footer-school-logo {
        width: 115px;
    }


    .footer-school-title h3 {
        font-size: 20px;
    }


    .footer-school-title p {
        font-size: 13px;
    }


    .footer-about-text {
        font-size: 14px;
    }


    .footer-social {
        width: 45px;
        height: 45px;
    }


    .footer-heading h4 {
        font-size: 21px;
    }


    .footer-links a {
        font-size: 15px;
    }


    .footer-contact-text p {
        font-size: 14px;
    }


    .footer-golden-strip {
        bottom: 200px;

        height: 70px;
    }


    .footer-center-logo {
        bottom: 150px;
    }


    .footer-center-logo img {
        width: 140px;
    }


    .school-footer-bottom {
        min-height: 220px;

        padding: 90px 15px 30px;
    }


    .footer-bottom-row {
        flex-direction: column;

        gap: 22px;
    }


    .footer-copyright {
        flex-wrap: wrap;

        justify-content: center;

        white-space: normal;
    }


    .footer-bottom-links {
        flex-wrap: wrap;

        justify-content: center;
    }


    .footer-separator {
        display: none;
    }

}

/* =======================================================
FOOTER SECTION END
======================================================== */

/* ===========================================================
CONTACT US PAGE START-----------------------------------------
============================================================== */

/*===============================
CONTACT US SECTION START
==================================== */
/* =========================================================
   OUR CONTACT SECTION
========================================================= */
/* =========================================================
   CONTACT SECTION
========================================================= */

.our-contact {
    position: relative;
    padding: 35px 0 15px;
    overflow: hidden;
    background-image: url("../images/background/contact-page.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.our-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%,
            rgba(255, 255, 255, .96),
            rgba(255, 255, 255, .58) 35%,
            transparent 60%),
        rgba(255, 255, 255, .40);
    pointer-events: none;
}

.our-contact>.container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   COMMON
========================================================= */

.our-contact h1,
.our-contact h2,
.our-contact h3,
.our-contact h4,
.our-contact p {
    margin-top: 0;
}

/* =========================================================
   HEADING
========================================================= */

.our-contact__heading {
    margin-bottom: 18px;
}

.our-contact__eyebrow,
.our-contact__heading-divider,
.our-contact__small-divider,
.our-contact__form-divider,
.our-contact__bottom-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-contact__eyebrow {
    gap: 16px;
    margin-bottom: 2px;
}

.our-contact__eyebrow strong {
    color: #987020;
    font-family: Georgia, serif;
    font-size: 16px;
    letter-spacing: .7px;
    font-weight: 700;
}

.our-contact__eyebrow span {
    width: 34px;
    height: 1px;
    background: #a57b25;
    position: relative;
}

.our-contact__eyebrow span:first-child::after,
.our-contact__eyebrow span:last-child::before {
    content: "✦";
    position: absolute;
    top: 50%;
    color: #a57b25;
    font-size: 17px;
    line-height: 1;
}

.our-contact__eyebrow span:first-child::after {
    right: -6px;
    transform: translateY(-50%);
}

.our-contact__eyebrow span:last-child::before {
    left: -6px;
    transform: translateY(-50%);
}

.our-contact__heading h2 {
    margin-bottom: 0;

    font-size: 76px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: #063f28;
}


.cont-h-mein {
    color: #1d1c78 !important;
}

.cont-heading {
    color: #ec1e26 !important;
}

.our-contact__heading h2 span {
    color: #790d18;
}

.our-contact__heading-divider {
    gap: 12px;
    margin: 10px auto 12px;
}

.our-contact__heading-divider span {
    width: 150px;
    height: 1px;
    background: #b08a32;
}

.our-contact__heading-divider i {
    color: #9c731c;
    font-size: 21px;
}

.our-contact__heading p {
    margin-bottom: 0;
    color: #30343a;
    font-size: 15px;
    line-height: 1.45;
}

/* =========================================================
   TOP INFO CARDS
========================================================= */

.our-contact__info-row {
    margin-top: 10px;
    margin-bottom: 26px;
}

.our-contact__info-card {
    position: relative;
    min-height: 134px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(176, 138, 50, .38);
    border-radius: 21px;
    background: rgba(255, 255, 255, .75);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.our-contact__info-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 20px;
    transition: all .3s ease;
    cursor: pointer;
}

.our-contact__color-side {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 82px;
}

.our-contact__info-card--green .our-contact__color-side {
    background: #1d1c78;
}

.our-contact__info-card--gold .our-contact__color-side {
    background: #ffc107;
}

.our-contact__info-card--red .our-contact__color-side {
    background: #ec1e26;
}

.our-contact__info-icon {
    position: relative;
    z-index: 2;
    width: 82px;
    height: 82px;
    min-width: 82px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(176, 138, 50, .55);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.our-contact__info-icon i {
    font-size: 37px;
}

.our-contact__info-card--green .our-contact__info-icon i {
    color: #06452e;
}

.our-contact__info-card--gold .our-contact__info-icon i {
    color: #bd7f00;
}

.our-contact__info-card--red .our-contact__info-icon i {
    color: #800c19;
}

.our-contact__info-text {
    padding: 13px 20px 13px 28px;
    flex: 1;
}

.our-contact__info-text h3 {
    margin-bottom: 1px;
    font-family: Georgia, serif;
    font-size: 21px;
    color: #314532;
    font-weight: 700;
}

.our-contact__small-divider {
    justify-content: flex-start;
    gap: 5px;
    height: 13px;
    margin-bottom: 5px;
}

.our-contact__small-divider span {
    width: 28px;
    height: 1px;
    background: #b88d2e;
}

.our-contact__small-divider i {
    font-size: 8px;
    color: #a87918;
}

.our-contact__info-text p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #3f4449;
}

/* =========================================================
   FORM + MAP
========================================================= */

.our-contact__main-row {
    margin-bottom: 26px;
}

.our-contact__form,
.our-contact__map {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(176, 138, 50, .25);
    border-radius: 21px;
    box-shadow: 0 10px 28px rgba(30, 30, 30, .12);
}

.our-contact__form {
    background: rgba(255, 255, 255, .78);
}

.our-contact__form-header {
    height: 58px;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: linear-gradient(100deg, #0b0757, #123b91);
}

.our-contact__form-header>span {
    width: 68px;
    height: 1px;
    background: #c09b3e;
}

.our-contact__form-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
}

.our-contact__form-header h3 i {
    font-size: 25px;
    transform: rotate(-15deg);
}

.our-contact__form-body {
    padding: 20px 22px 16px;
}

.our-contact__field,
.our-contact__message-field {
    position: relative;
}

.our-contact__field>i,
.our-contact__message-field>i {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: #252a2f;
    font-size: 19px;
}

.our-contact__field .form-control {
    height: 56px;
    padding: 0 16px 0 51px;
}

.our-contact__message-field>i {
    top: 21px;
    transform: none;
}

.our-contact__message-field .form-control {
    min-height: 101px;
    padding: 16px 16px 16px 51px;
    resize: vertical;
}

.our-contact .form-control {
    border: 1px solid rgba(149, 119, 59, .25);
    border-radius: 9px;
    background: rgba(255, 255, 255, .63);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, .025);
    color: #333;
    font-size: 14px;
}

.our-contact .form-control:focus {
    border-color: #a57b25;
    box-shadow: 0 0 0 .2rem rgba(165, 123, 37, .12);
}

/* FORM DIVIDER */

.our-contact__form-divider {
    gap: 12px;
    margin: 3px 0 0;
}

.our-contact__form-divider span {
    flex: 1;
    height: 1px;
    background: #b58b31;
}

.our-contact__form-divider i {
    color: #8b5e15;
    font-size: 20px;
}

/* BUTTON */

.our-contact__button {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(100deg, #ffc107, #e0a800);
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .7px;
    box-shadow: 0 7px 14px rgba(92, 0, 10, .18);
    transition: .3s ease;
    cursor: pointer;
}

.our-contact__button:hover {
    transform: translateY(-2px);
    background: linear-gradient(100deg, #1d1c78 0%, #4f6bff 50%, #ffffff 100%);
}

.our-contact__button i {
    margin-left: 16px;
    font-size: 19px;
    vertical-align: -1px;
}

/* =========================================================
   MAP
========================================================= */

.our-contact__map {
    min-height: 400px;
    padding: 7px;
    background: rgba(255, 255, 255, .60);
}

.our-contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 384px;
    border: 0;
    border-radius: 14px;
}

/* =========================================================
   BOTTOM STRIP
========================================================= */

.our-contact__bottom-strip {
    overflow: hidden;
    margin-top: 0;
    border: 1px solid rgba(176, 138, 50, .28);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.our-contact__bottom-card {
    min-height: 105px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.our-contact__bottom-card::after {
    content: "";
    position: absolute;
    top: 21px;
    bottom: 21px;
    right: 0;
    width: 1px;
    background: rgba(35, 35, 35, .24);
}

.our-contact__bottom-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    border: 2px solid #d4c7a4;
    color: goldenrod;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .13);
}

.our-contact__bottom-icon i {
    font-size: 31px;
}

.our-contact__bottom-content {
    flex: 1;
}

.our-contact__bottom-content h4 {
    margin-bottom: 2px;
    color: #26412f;
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.our-contact__bottom-divider {
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 5px;
}

.our-contact__bottom-divider span {
    width: 27px;
    height: 1px;
    background: #b38a2c;
}

.our-contact__bottom-divider i {
    color: #9d741d;
    font-size: 7px;
}

.our-contact__bottom-content p {
    margin-bottom: 0;
    color: #4b4d50;
    font-size: 13px;
    white-space: nowrap;
}

.our-contact__social {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 8px;
}

.our-contact__social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid goldenrod;
    color: goldenrod;
    text-decoration: none;
    transition: .3s ease;
}

.our-contact__social a:hover {
    transform: translateY(-3px);
    background: #fff;
}

.our-contact__social i {
    font-size: 16px;
}

/* =========================================================
   FOOTER DECORATIVE LINE
========================================================= */

.our-contact__footer-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding-top: 22px;
}

.our-contact__footer-line>span {
    width: 75px;
    height: 1px;
    background: linear-gradient(to right, transparent, #af8325);
}

.our-contact__footer-line>span:nth-of-type(2),
.our-contact__footer-line>span:nth-of-type(3) {
    background: linear-gradient(to right, #af8325, transparent);
}

.our-contact__footer-line i {
    color: #aa7d20;
    font-size: 15px;
}

.our-contact__footer-line p {
    margin: 0 8px;
    color: #6f111b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .our-contact__heading h2 {
        font-size: 64px;
    }

    .our-contact__info-card {
        min-height: 126px;
    }

    .our-contact__info-icon {
        margin-left: 22px;
    }

    .our-contact__info-text {
        padding-left: 20px;
    }

    .our-contact__bottom-card {
        gap: 12px;
        padding: 14px 12px;
    }

    .our-contact__bottom-content h4 {
        font-size: 13px;
    }

    .our-contact__bottom-content p {
        font-size: 12px;
    }
}

@media (max-width: 991px) {

    .our-contact {
        padding-top: 45px;
    }

    .our-contact__info-row {
        margin-bottom: 20px;
    }

    .our-contact__bottom-card::after {
        display: none;
    }

    .our-contact__bottom-card {
        border-bottom: 1px solid rgba(35, 35, 35, .15);
    }

    .our-contact__map {
        min-height: 420px;
    }

    .our-contact__map iframe {
        min-height: 404px;
    }
}

@media (max-width: 767px) {

    .our-contact__heading h2 {
        font-size: 47px;
    }

    .our-contact__heading-divider span {
        width: 70px;
    }

    .our-contact__heading p {
        font-size: 14px;
    }

    .our-contact__eyebrow strong {
        font-size: 13px;
    }

    .our-contact__info-card {
        min-height: 120px;
    }

    .our-contact__form-header {
        padding: 0 15px;
        gap: 10px;
    }

    .our-contact__form-header>span {
        width: 30px;
    }

    .our-contact__form-header h3 {
        font-size: 19px;
        gap: 9px;
    }

    .our-contact__form-body {
        padding: 16px;
    }

    .our-contact__map {
        min-height: 350px;
    }

    .our-contact__map iframe {
        min-height: 334px;
    }

    .our-contact__footer-line>span {
        width: 25px;
    }

    .our-contact__footer-line p {
        font-size: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .our-contact__heading h2 {
        font-size: 39px;
    }

    .our-contact__info-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        margin-left: 15px;
    }

    .our-contact__info-icon i {
        font-size: 31px;
    }

    .our-contact__info-text {
        padding-left: 15px;
        padding-right: 10px;
    }

    .our-contact__info-text h3 {
        font-size: 17px;
    }

    .our-contact__info-text p {
        font-size: 12px;
    }

    .our-contact__footer-line {
        gap: 4px;
    }

    .our-contact__footer-line>span,
    .our-contact__footer-line i {
        display: none;
    }
}

/*===============================
CONTACT US SECTION END
==================================== */

/* =================================================
PRAYER SECTION START 
==================================================== */
/* ================= ANTHEM SECTION ================= */

.anthem-section {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 90px 0;
}

/* Heading */

.anthem-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    margin-bottom: 20px;
}

.anthem-badge span {
    font-weight: 600;
    color: #6c757d;
}

.anthem-title {
    font-size: 60px;
    font-weight: 800;
    color: #8a1236;
    margin-bottom: 15px;
}

.anthem-title span {
    color: #123b91;
}

.anthem-desc {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Cards */

.anthem-card {
    position: relative;
    background: #fff;
    border-radius: 25px;
    padding: 70px 30px 30px;
    height: 100%;
    overflow: visible;
    box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
    transition: .4s ease;
}

.anthem-card:hover {
    transform: translateY(-8px);
}

.anthem-card-icon {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 95px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 25px;
}

.anthem-icon {
    font-size: 42px;
    color: #fff;
}

/* Card Colors */

.anthem-card-maroon .anthem-card-icon {
    background: linear-gradient(135deg, #8a1236, #b2184d);
}

.anthem-card-green .anthem-card-icon {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.anthem-card-blue .anthem-card-icon {
    background: linear-gradient(135deg, #123b91, #2f6fff);
}

.anthem-card-body h4 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.anthem-card-maroon h4 {
    color: #8a1236;
}

.anthem-card-green h4 {
    color: #4caf50;
}

.anthem-card-blue h4 {
    color: #123b91;
}

.anthem-card-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.anthem-card-body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

.anthem-card-body ul li::before {
    content: "\F285";
    font-family: bootstrap-icons;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #123b91;
}

/* Responsive */

@media(max-width:991px) {
    .anthem-title {
        font-size: 42px;
    }
}

@media(max-width:767px) {
    .anthem-title {
        font-size: 34px;
    }

    .anthem-desc {
        font-size: 15px;
    }

    .anthem-card {
        padding: 65px 20px 25px;
    }
}

/* =================================================
PRAYER SECTION START 
==================================================== */