﻿
/* ========================================================= FANCY LIGHT BLUE UIT NAVBAR ========================================================= */ .uit-navbar {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: linear-gradient( 135deg, #ffffff 0%, #f2faff 55%, #e6f5ff 100% );
    box-shadow: 0 5px 25px rgba(31, 119, 180, 0.16);
    z-index: 9999;
}
/* ========================================================= HEADER ========================================================= */

.navbar-header-row {
    padding: 10px 0 8px;
    position: relative;
}
/* ========================================================= LOGO ========================================================= */

.uit-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    padding: 6px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #b9e6ff;
    box-shadow: 0 5px 18px rgba(30, 144, 200, 0.18);
    transition: all 0.35s ease;
}

    .uit-logo:hover {
        transform: translateY(-3px) scale(1.03);
        border-color: #55b9ed;
        box-shadow: 0 8px 25px rgba(30, 144, 200, 0.28);
    }

    .uit-logo img {
        width: 78px;
        height: 78px;
        object-fit: contain;
        margin: 0 auto;
    }
/* ========================================================= UNIVERSITY NAME ========================================================= */

/*.uit-brand-name {
            min-height: 92px;
            display: flex;
            align-items: center;
            padding: 5px 15px;
            color: #075985;
            font-size: 27px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.2px;
            text-shadow: 0 1px 1px rgba(0, 100, 160, 0.08);
        }*/
/* ========================================================= DECORATIVE LINE ========================================================= */

/*.uit-brand-name:after {
                content: "";
                position: absolute;
                left: 0%;
                bottom: 4px;
                width: 100%;
                height: 4px;
                border-radius: 10px;
                background: linear-gradient( 90deg, #29a9e8, #8bd8ff );
            }*/
/* ========================================================= MOBILE TOGGLE ========================================================= */

/* ========================================================= FANCY UNIVERSITY BRAND NAME ======== ================================================= */ .uit-brand-name {
    min-height: 92px;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.3px; /* Premium Light Blue Gradient Text */
    background: linear-gradient( 90deg, #075985 0%, #0284c7 45%, #38bdf8 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
    /* Decorative underline */

    .uit-brand-name::after {
        content: "";
        position: absolute;
        left: 0%;
        bottom: 3px;
        width: 100%;
        height: 4px;
        border-radius: 20px;
        background: linear-gradient( 90deg, #0284c7, #38bdf8, #bae6fd );
        box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
    }
/* ========================================================= TABLET ========================================================= */

@media (max-width: 1199px) {
    .uit-brand-name {
        font-size: 25px;
    }
}
/* ========================================================= MOBILE ========================================================= */

@media (max-width: 767px) {
    .uit-brand-name {
        min-height: auto;
        display: block;
        padding: 8px 45px 12px 10px;
        text-align: center;
        font-family: "Georgia", "Times New Roman", serif;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
    }

        .uit-brand-name::after {
            display: none;
        }
}
/* ========================================================= SMALL MOBILE ========================================================= */

@media (max-width: 480px) {
    .uit-brand-name {
        font-size: 17px;
        line-height: 1.35;
        padding-right: 40px;
    }
}


.uit-navbar .navbar-toggle {
    margin-top: 25px;
    padding: 8px 9px;
    border: 1px solid #72c8ef;
    border-radius: 10px;
    background: #eaf8ff;
    box-shadow: 0 3px 10px rgba(40, 160, 220, 0.15);
    transition: all 0.3s ease;
}

    .uit-navbar .navbar-toggle:hover, .uit-navbar .navbar-toggle:focus {
        background: #d7f2ff;
        border-color: #27a9e6;
    }

    .uit-navbar .navbar-toggle .icon-bar {
        width: 24px;
        height: 3px;
        margin: 4px 0;
        border-radius: 5px;
        background-color: #0876a8;
    }
/* ========================================================= MENU CONTAINER ========================================================= */

.uit-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 7px 0 0;
    padding: 5px;
    border: 1px solid #c8eafa;
    border-radius: 14px 14px 0 0;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 -2px 12px rgba(40, 160, 220, 0.05);
}
    /* ========================================================= MENU ITEMS ========================================================= */

    .uit-menu > li > a {
        position: relative;
        margin: 2px;
        padding: 13px 15px;
        border-radius: 10px;
        color: #145875 !important;
        font-size: 14px;
        font-weight: 600;
        transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
        /* ========================================================= MENU HOVER ========================================================= */

        .uit-menu > li > a:hover, .uit-menu > li > a:focus {
            color: #ffffff !important;
            background: linear-gradient( 135deg, #29a9e8, #087bb5 ) !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 14px rgba(20, 150, 210, 0.25);
        }
    /* ========================================================= ACTIVE MENU ========================================================= */

    .uit-menu > li.active > a, .uit-menu > li.active > a:hover {
        color: #ffffff !important;
        background: linear-gradient( 135deg, #24a8e5, #087bb5 ) !important;
        box-shadow: 0 4px 12px rgba(20, 150, 210, 0.22);
    }
    /* ========================================================= HOME ICON ========================================================= */

    .uit-menu .fa {
        margin-right: 5px;
        font-size: 13px;
    }
/* ========================================================= TABLET ========================================================= */

@media (max-width: 1199px) {
    .uit-brand-name {
        font-size: 25px;
    }

    .uit-menu > li > a {
        padding: 12px 9px;
        font-size: 13px;
    }
}
/* ========================================================= MOBILE ========================================================= */

@media (max-width: 767px) {
    .uit-navbar {
        position: relative;
    }

    .navbar-header-row {
        padding: 10px 0 12px;
    }
    /* Logo */

    .uit-logo {
        width: 78px;
        height: 78px;
        margin: 0 auto;
    }

        .uit-logo img {
            width: 65px;
            height: 65px;
        }
    /* University Name */

    /*.uit-brand-name {
                min-height: auto;
                display: block;
                padding: 10px 45px 15px 10px;
                text-align: center;
                font-size: 20px;
                line-height: 1.4;
            }*/
    /* Remove desktop line */

    /*.uit-brand-name:after {
                    display: none;
                }*/
    /* Mobile button */

    .uit-navbar .navbar-toggle {
        position: absolute;
        right: 15px;
        top: 82px;
        margin: 0;
        z-index: 20;
    }
    /* Mobile menu */

    .uit-menu {
        display: block;
        width: 100%;
        margin: 0;
        padding: 7px;
        border-radius: 0 0 14px 14px;
        background: #f4fbff;
    }

        .uit-menu > li {
            width: 100%;
            border-bottom: 1px solid #d9f0fa;
        }

            .uit-menu > li:last-child {
                border-bottom: 0;
            }

            .uit-menu > li > a {
                display: block;
                margin: 2px 0;
                padding: 13px 16px;
                border-radius: 9px;
                font-size: 14px;
                text-align: left;
            }

                .uit-menu > li > a:hover, .uit-menu > li > a:focus {
                    padding-left: 23px;
                    transform: none;
                }

    .carousel-control i {
        font-size: 30px;
        margin-top: 32px;
    }
}
/* ========================================================= SMALL MOBILE ========================================================= */

@media (max-width: 480px) {
    .uit-brand-name {
        font-size: 17px;
        line-height: 1.35;
        padding-right: 42px;
    }

    .uit-logo {
        width: 70px;
        height: 70px;
    }

        .uit-logo img {
            width: 58px;
            height: 58px;
        }

    .uit-navbar .navbar-toggle {
        top: 54px;
    }

    .uit-menu > li > a {
        padding: 12px 14px;
        font-size: 13px;
    }


    .carousel-control i {
        font-size: 30px;
        margin-top: 32px;
    }
}

