/* =========================================================
           GLOBAL
========================================================= */

:root {

    --bimo-blue: #074297;
    --bimo-dark: #052f6c;
    --bimo-light: #eef5ff;
    --bimo-gold: #f4b400;
    --bimo-text: #1f2937;
    --bimo-muted: #6b7280;
    --white: #ffffff;

}


* {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


html,
body {
    min-height: 100%;
}


body {

    margin: 0;

    background: #f7f9fc;

    padding-top: 45px;

    color: var(--bimo-text);

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    min-height: 100vh;
    display: flex;
    flex-direction: column;

}


/* Main page content should expand */
main,
.page-content {
    flex: 1 0 auto;
}


a {

    text-decoration: none;

}


/* =========================================================
   TOP INFORMATION BAR
========================================================= */

.bimo-topbar {

    background: var(--bimo-dark);

    color: #fff;

    padding: 8px 0;

    font-size: 13px;

}


.bimo-topbar a {

    color: #fff;

}


.bimo-topbar i {

    color: var(--bimo-gold);

}

/* TOPNAVBAR.PHP FILES */
.topnavbar{
  background-color: #fff;
  border: #f1f1f1 solid 1px;
}

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

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    transition: top 0.35s ease;
}

.navbar a.nav-link{
  color: #074297;
  font-size: 12px;
  text-transform: uppercase;
}

.topnavbar a:hover{
  color: #ffc107;
}

.topnavbar ul li a:hover{
  background-color: #fff;
  color: #6d6b6b;
  border-radius: 3px;
}
.navbar-toggler-icon{
  background-color: #ffffff;
  border:none;
  padding:8px 10px;
  font-size: 12px;
}
.dropdown-menu{
  background-color: #d8dcfc;
  border:#f1f1f1 solid 1px; 
}

/*HEADER IMAGE HOVER */
.logo-hover{
    width:25px;
    height:auto;
    transition:transform 0.3s ease;
    cursor:pointer;
}

.logo-hover:hover{
    transform:scale(1.5);
}


/* SEARCH.PHP */
/* The overlay effect with black background */
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9); /* Black with a little bit see-through */
}

/* The content */
.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

/* Close button */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

/* Style the search field */
.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

/* Style the submit button */
.overlay button {
  float: left;
  width: 20%;
  padding: 19px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.overlay button:hover {
  background: #bbb;
}



/* =========================================================
   MAIN CONTENT
========================================================= */

.bimo-main {

    padding-bottom: 60px;

}


/* =========================================================
   ADMISSION ALERT
========================================================= */

.admission-alert {

    background:
        linear-gradient(
            135deg,
            var(--bimo-blue),
            var(--bimo-dark)
        );

    color: #fff;

    border-radius: 0 0 15px 15px;

    padding: 14px 20px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.10);

}


.admission-alert-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.admission-alert-title {

    font-weight: 700;

    margin-bottom: 2px;

}


.admission-alert-text {

    font-size: 14px;

    opacity: .95;

}


.admission-alert .btn {

    background: var(--bimo-gold);

    color: #111;

    border: none;

    font-weight: 700;

    white-space: nowrap;

}


.admission-alert .btn:hover {

    background: #ffc107;

    transform: translateY(-1px);

}


/* =========================================================
   HERO
========================================================= */

.bimo-hero {

    padding: 55px 0 45px;

    background:

        radial-gradient(
            circle at top right,
            rgba(7,66,151,.12),
            transparent 35%
        ),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f8ff 100%
        );

}


.hero-content {

    max-width: 700px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: var(--bimo-light);

    color: var(--bimo-blue);

    padding: 8px 15px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 18px;

}


.hero-badge i {

    color: var(--bimo-gold);

}


.hero-title {

    font-size: clamp(
        2.1rem,
        5vw,
        4rem
    );

    line-height: 1.1;

    font-weight: 800;

    color: #12213a;

    margin-bottom: 20px;

}


.hero-title span {

    color: var(--bimo-blue);

}


.hero-description {

    font-size: 17px;

    line-height: 1.8;

    color: var(--bimo-muted);

    margin-bottom: 28px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.bimo-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 12px 22px;

    border-radius: 8px;

    background: var(--bimo-blue);

    color: #fff;

    font-weight: 700;

    border: 2px solid var(--bimo-blue);

    transition: .25s ease;

}


.bimo-btn:hover {

    background: var(--bimo-dark);

    color: #fff;

    transform: translateY(-2px);

}


.bimo-btn-outline {

    background: #fff;

    color: var(--bimo-blue);

}


.bimo-btn-outline:hover {

    color: #fff;

}


/* =========================================================
   HERO SIDE CARD
========================================================= */

.hero-info-card {

    background: #fff;

    border-radius: 20px;

    padding: 25px;

    box-shadow:
        0 15px 45px rgba(7,66,151,.12);

    border: 1px solid #e5ebf5;

}


.hero-info-logo {

    width: 110px;

    height: 110px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--bimo-light);

    padding: 10px;

}


.hero-info-logo img {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

}


.hero-info-card h4 {

    color: var(--bimo-blue);

    font-weight: 800;

}


.hero-stat {

    padding: 13px;

    background: #f7f9fc;

    border-radius: 10px;

    margin-top: 10px;

}


.hero-stat i {

    color: var(--bimo-blue);

    width: 25px;

}


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

.quick-links {

    margin-top: -10px;

    position: relative;

    z-index: 5;

}


.quick-card {

    height: 100%;

    background: #fff;

    border-radius: 14px;

    padding: 20px 15px;

    text-align: center;

    border: 1px solid #e7edf7;

    box-shadow:
        0 7px 25px rgba(0,0,0,.06);

    transition: .25s ease;

    color: var(--bimo-text);

}


.quick-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(7,66,151,.13);

    color: var(--bimo-blue);

}


.quick-icon {

    width: 52px;

    height: 52px;

    margin: 0 auto 12px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--bimo-light);

    color: var(--bimo-blue);

    font-size: 20px;

}


.quick-card h6 {

    font-weight: 700;

    margin: 0;

}


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

.bimo-section {

    padding: 65px 0 20px;

}


.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-heading .small-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bimo-blue);
    background: var(--bimo-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading .small-title i {
    color: var(--bimo-gold);
}

.section-heading h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.2;
    font-weight: 800;
    color: #14213d;
    margin: 0 0 14px;
}

.section-heading h2 span {
    color: var(--bimo-blue);
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--bimo-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-card {

    background: #fff;

    border: 1px solid #e8edf5;

    border-radius: 16px;

    padding: 28px;

    height: 100%;

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

}


.feature-icon {

    width: 58px;

    height: 58px;

    border-radius: 12px;

    background: var(--bimo-light);

    color: var(--bimo-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;

    margin-bottom: 18px;

}


.feature-card h4 {

    font-weight: 750;

    color: #172b4d;

}


.feature-card p {

    color: var(--bimo-muted);

    line-height: 1.7;

    margin-bottom: 0;

}


/* =========================================================
   CONTENT BLOCK
========================================================= */

.content-block {

    background: #fff;

    border-radius: 18px;

    border: 1px solid #e7edf5;

    box-shadow:
        0 8px 28px rgba(0,0,0,.05);

    overflow: hidden;

}


.content-block-header {

    padding: 22px 25px;

    border-bottom: 1px solid #edf0f5;

}


.content-block-header h4 {

    margin: 0;

    color: var(--bimo-blue);

    font-weight: 800;

}


.content-block-body {

    padding: 25px;

}


/* =========================================================
   ADMISSION CTA
========================================================= */

.admission-cta {

    margin-top: 55px;

    padding: 45px 30px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            var(--bimo-blue),
            var(--bimo-dark)
        );

    color: #fff;

    text-align: center;

    box-shadow:
        0 15px 40px rgba(7,66,151,.20);

}


.admission-cta h2 {

    font-weight: 800;

}


.admission-cta p {

    max-width: 700px;

    margin: 12px auto 25px;

    opacity: .9;

}


.admission-cta .btn {

    background: var(--bimo-gold);

    color: #111;

    border: none;

    font-weight: 800;

    padding: 12px 25px;

}


/* =========================================================
   MODAL
========================================================= */

.admission-modal-header {

    background: var(--bimo-blue);

    color: #fff;

}


.admission-modal-body {

    line-height: 1.7;

}


.admission-program {

    background: var(--bimo-light);

    border-left: 4px solid var(--bimo-blue);

    padding: 12px 15px;

    margin-bottom: 8px;

    border-radius: 5px;

}


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

@media (max-width: 767px) {

    .bimo-topbar {

        display: none;

    }


    .admission-alert-content {

        align-items: flex-start;

        flex-direction: column;

        gap: 10px;

    }


    .admission-alert {

        border-radius: 0;

        padding: 12px 15px;

    }


    .bimo-hero {

        padding: 35px 0;

    }


    .hero-title {

        font-size: 2.2rem;

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .bimo-btn {

        width: 100%;

    }


    .hero-info-card {

        margin-top: 10px;

    }


    .quick-links {

        margin-top: 20px;

    }


    .bimo-section {

        padding-top: 45px;

    }

}


/* FOOTER.PHP FILES */
footer{
  width: 100%;
  position: relative;
  bottom: 0;
}

#gray-footer{
  width: 100%;
  position: relative;
}
#gray-footer h6{
  color: #074297;
  padding-bottom: 10px;
  text-transform: uppercase;
}
#gray-footer a{
  color: #2b2929;
  
  text-decoration: none;
}
#gray-footer a:hover{
  color: #074297;
}


#black-footer{
  padding-top: 25px;
  color: #6d6b6b;
  background-color: #1c1a1a;
}
#black-footer h6{
  color: #fff;
  text-align: center;
  padding-bottom: 10px;
  text-transform: uppercase;
}
#black-footer p{
  text-align: center;
  
}
#black-footer a{
  color: #6d6b6b;
  text-decoration: none;
}
#black-footer a:hover{
  color: #d2d2d2;
}
footer #copyright{
  padding-top: 30px;
}


#footer-2{
  bottom: 0;
  width: 100%;
  color: #6d6b6b;
  background-color: #1c1a1a;
}
#footer-2 h6{
  color: #fff;
  text-align: center;
  padding-bottom: 10px;
  text-transform: capitalize;
}
#footer-2 p{
  text-align: center;
  
}
#footer-2 a{
  color: #6d6b6b;
  text-decoration: none;
}
#footer-2 a:hover{
  color: #d2d2d2;
}
footer #copyright{
  padding-top: 30px;
}


/* Normal footer */
footer {
    flex-shrink: 0;
}

/* Footer extra/admin footer */
.admin-footer {
    flex-shrink: 0;
    width: 100%;
}