﻿/*==================================================
GENERAL
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#ffffff;
    overflow-x:hidden;
    color:#333;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

/*==================================================
TOP BAR
==================================================*/

.topbar{
    background:#0f2458;
    color:#fff;
    font-size:13px;
}

.topbar-wrapper{

    height:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
}

.top-left span,
.top-right span{
    margin-right:22px;
    white-space:nowrap;
}

.topbar i{
    margin-right:6px;
}

.top-right a{

    color:#fff;

    margin-left:12px;

    transition:.3s;
}

.top-right a:hover{
    color:#ffd54f;
}

/*==================================================
HEADER
==================================================*/

.navigation{

    background:#fff;

    border-bottom:1px solid #ececec;

    box-shadow:0 2px 12px rgba(0,0,0,.05);
}

.nav-wrapper{

    height:86px;

    display:grid;

    grid-template-columns:340px 1fr auto;

    align-items:center;

    column-gap:25px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/*==================================================
LOGO
==================================================*/

.logo-section{

    display:flex;

    align-items:center;
}

.logo-section img{

    width:60px;

    height:60px;

    object-fit:contain;

    margin-right:14px;
}

.logo-section h3{

    margin:0;

    color:#1765ff;

    font-size:18px;

    font-weight:700;

    line-height:1.2;

    white-space:nowrap;
}

.logo-section p{

    margin-top:3px;

    margin-bottom:0;

    font-size:13px;

    color:#777;
}

/*==================================================
MENU
==================================================*/

.main-menu{

    display:flex;

    justify-content:center;

    align-items:center;
}

.main-menu li{

    margin:0 16px;
}

.main-menu a{

    color:#2b2b2b;

    font-size:15px;

    font-weight:600;

    transition:.3s;

    white-space:nowrap;
}

.main-menu a:hover{

    color:#1765ff;
}

.main-menu .active{

    color:#1765ff;
}

/*==================================================
BUTTONS
==================================================*/

.login-area{

    display:flex;

    align-items:center;

    gap:12px;
}

.btn-login,
.btn-dept{

    display:flex;

    align-items:center;

    justify-content:center;

    height:44px;

    padding:0 20px;

    border-radius:8px;

    font-weight:600;

    font-size:14px;

    white-space:nowrap;

    transition:.3s;
}

.btn-login{

    background:#1765ff;

    color:#fff;
}

.btn-login:hover{

    background:#0f52d7;

    color:#fff;
}

.btn-dept{

    border:2px solid #1765ff;

    color:#1765ff;
}

.btn-dept:hover{

    background:#1765ff;

    color:#fff;
}
    .btn-login i,
    .btn-dept i {
        margin-right: 8px;
    }

/*==================================================
PAGE CONTENT
==================================================*/

main{

    min-height:400px;
}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#0f2458;

    color:#fff;

    padding:18px 0;

    text-align:center;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.nav-wrapper{

grid-template-columns:300px 1fr auto;

}

.main-menu li{

margin:0 10px;

}

}

@media(max-width:991px){

.topbar{
display:none;
}

.nav-wrapper{

display:block;

padding:15px 0;

}

.logo-section{

justify-content:center;

margin-bottom:20px;

}

.main-menu{

justify-content:center;

flex-wrap:wrap;

margin-bottom:20px;

}

.main-menu li{

margin:8px 12px;

}

.login-area{

justify-content:center;

}

}

@media(max-width:576px){

.logo-section{

flex-direction:column;

text-align:center;

}

.logo-section img{

margin-right:0;

margin-bottom:10px;

}

.logo-section h3{

font-size:20px;

white-space:normal;

}

.login-area{

flex-direction:column;

}

.btn-login,
.btn-dept{

width:100%;

}

}

/*==================================
HERO
==================================*/

.hero-section {
    background: #f5f8ff;
    padding-bottom: 70px;
    padding-top:20px;
}

.hero-badge {
    display: inline-block;
    background: #e8f0ff;
    color: #1765ff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: #132b67;
    margin-top: 25px;
    line-height: 1.15;
}

    .hero-title span {
        color: #1d5eff;
    }

.hero-text {
    margin-top: 25px;
    color: #666;
    line-height: 32px;
    font-size: 18px;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.hero-image {
    max-width: 100%;
}

/*======================================
STATISTICS
======================================*/

.statistics {
    margin-top: -55px;
    position: relative;
    z-index: 20;
}

.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
    margin-bottom: 20px;
    height: 110px;
}

    .stat-card:hover {
        transform: translateY(-6px);
    }

.stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.blue {
    background: #1765ff;
}

.green {
    background: #27ae60;
}

.orange {
    background: #ff9800;
}

.purple {
    background: #8e44ad;
}

.stat-card h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #162c63;
}

.stat-card p {
    margin: 4px 0 0;
    color: #666;
}

/*========================================
OUR SERVICES
========================================*/

.services-section {
    padding: 70px 0;
    background: #ffffff;
}

.section-title {
    margin-bottom: 35px;
}

    .section-title h2 {
        font-size: 34px;
        font-weight: 700;
        color: #162c63;
    }

    .section-title p {
        color: #777;
        margin-top: 8px;
    }

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: auto;
    font-size: 26px;
    margin-bottom: 20px;
}

.service-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d3557;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Colors */

.blue {
    background: #1765ff;
}

.green {
    background: #2ecc71;
}

.orange {
    background: #f39c12;
}

.purple {
    background: #8e44ad;
}

.indigo {
    background: #4f46e5;
}

.cyan {
    background: #06b6d4;
}


/*====================================
TEAM & NOTICE
====================================*/

.team-notice-section {
    padding: 20px 0;
    padding-top:20px;
    background: #f8fbff;
}

.card-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    padding: 25px;
    height: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .section-header h3 {
        font-size: 24px;
        font-weight: 700;
        color: #1b2b5f;
    }

    .section-header a {
        color: #1765ff;
        font-weight: 600;
    }

/*=========================
TEAM
=========================*/
.member-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    transition: .3s;
    height: 100%;
}

    .member-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,.08);
    }

    .member-card img {
        width: 150px;
        height: 170px;
        object-fit: cover;
        border-radius: 10px;
        margin: auto;
        display: block;
        margin-bottom: 15px;
    }

    .member-card h5 {
        font-size: 14px;
        font-weight: 700;
        color: #1b2b5f;
        line-height: 15px;
        margin-bottom: 2px;
        min-height: 30px;
    }

    .member-card span {
        display: block;
        font-size: 15px;
        color: #7b8794;
        line-height: 24px;
        font-weight: 500;
        min-height: 48px;
    }
.member-name {
    font-size: 13px;
    font-weight: 700;
    color: #17316b;
    line-height: 30px;
    margin: 12px 0 8px;
}

.member-post {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    line-height: 24px;
    font-weight: 500;
}

/*=========================
NOTICE
=========================*/

.notice-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .notice-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .notice-list i {
        width: 45px;
        height: 45px;
        background: #edf4ff;
        color: #1765ff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .notice-list strong {
        display: block;
        color: #222;
    }

    .notice-list span {
        color: #777;
        font-size: 13px;
    }

    .notice-list label {
        margin-left: auto;
        background: #1765ff;
        color: #fff;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 11px;
    }

/*==================================
SUPPORT
==================================*/

.support-section {
    padding: 20px 0;
    background: #fff;
}

.support-box {
    background: #1765ff;
    color: #fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-left {
    display: flex;
    align-items: center;
}

    .support-left i {
        font-size: 45px;
        margin-right: 20px;
    }

.support-btn {
    background: #fff;
    color: #1765ff;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
}

/*==================================
FOOTER
==================================*/

.footer {
    background: #0f2458;
    color: #fff;
    padding: 20px 0 20px;
}

.footer-logo {
    width: 65px;
    margin-bottom: 15px;
}

.footer h5 {
    margin-bottom: 18px;
    font-size: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: #d8e2ff;
    text-decoration: none;
    transition: .3s;
}

    .footer a:hover {
        color: #ffffff;
        padding-left: 6px;
    }

.footer hr {
    border-color: rgba(255,255,255,.15);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.footer .col-lg-2,
.footer .col-lg-3,
.footer .col-lg-4 {
    text-align: left;
}

.footer p {
    text-align: left;
    margin-bottom: 10px;
    color: #d8e2ff;
    line-height: 1.7;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 18px;
    }

        .footer-contact li i {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: rgba(255,255,255,.12);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 14px;
        }

        .footer-contact li span {
            color: #d9e4ff;
            line-height: 1.7;
        }

.footer ul li a i {
    margin-right: 8px;
    color: #4da3ff;
    font-size: 12px;
}
.footer-logo-box {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

.footer-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.footer h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* ================= MOBILE HEADER ================= */

.mobile-toggle {
    display: none;
}

#mobileMenu {
    display: none;
}

@media (max-width:991px) {

    .topbar {
        display: none;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: auto;
        padding: 15px 0;
        grid-template-columns: none;
    }

    .logo-section {
        margin: 0;
    }

        .logo-section h3 {
            font-size: 16px;
        }

        .logo-section p {
            font-size: 12px;
        }

    /* Hide Desktop Menu */

    .main-menu,
    .login-area {
        display: none;
    }

    /* Show Mobile Button */

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: #1765ff;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 22px;
        cursor: pointer;
    }


    @media (max-width:991px) {

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo-section {
            flex: 1;
        }

        .mobile-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto; /* Right side push */
            order: 2;
        }

        .main-menu,
        .login-area {
            display: none;
        }
    }

    /* Mobile Menu */

    #mobileMenu {
        width: 100%;
    }

        #mobileMenu.show {
            display: block;
        }

    .mobile-menu {
        margin-top: 15px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,.08);
        overflow: hidden;
    }

        .mobile-menu li {
            border-bottom: 1px solid #eee;
        }

            .mobile-menu li:last-child {
                border-bottom: none;
            }

        .mobile-menu a {
            display: block;
            padding: 14px 20px;
            color: #333;
            font-weight: 600;
        }

            .mobile-menu a:hover {
                background: #f5f7ff;
                color: #1765ff;
            }
}

.about-hero {
    padding: 20px 0;
    background: #f4f8ff;
}

.about-breadcrumb {
    margin-bottom: 40px;
    font-size: 15px;
}

    .about-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

    .about-breadcrumb span {
        margin: 0 8px;
        color: #888;
    }

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #e8f0ff;
    color: #2563eb;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0b2e73;
    line-height: 1.2;
    margin-bottom: 25px;
}

    .about-hero h1 span {
        color: #2563eb;
    }

.about-hero p {
    font-size: 18px;
    line-height: 32px;
    color: #555;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary2 {
    background: #2563eb;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline2 {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.about-intro {
    padding: 90px 0;
}

.section-subtitle {
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-intro h2 {
    font-size: 40px;
    color: #0b2e73;
    margin: 15px 0 25px;
}

.about-intro p {
    color: #666;
    line-height: 32px;
    margin-bottom: 20px;
}

.about-list {
    margin-top: 25px;
}

    .about-list div {
        margin-bottom: 15px;
        font-weight: 500;
    }

    .about-list i {
        color: #2563eb;
        margin-right: 10px;
    }


    .about-hero img {
        max-width: 420px;
        width: 100%;
    }

#MainLgPage {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    #MainLgPage label {
        font-weight: 600;
        margin-bottom: 10px;
    }

    #MainLgPage .btn {
        margin-top: 20px;
        width: 180px;
    }

.hidden {
    display: none;
}

.emp-header-gradient {
    background: linear-gradient(135deg,#0058ff,#00b5ff);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.emp-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    object-fit: cover;
}

.emp-header-content h4 {
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.emp-header-content p {
    color: rgba(255,255,255,.9);
    margin: 3px 0 0;
}

.emp-table th {
    background: #f4f8ff;
    width: 180px;
}

.otp-card {
    margin-top: 10px;
}

.otp-input {
    height: 48px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.emp-avatar-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #005eff;
}



#backDrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.75);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #backDrop.hidden {
        display: none;
    }

.Loader {
    width: 60px;
    height: 60px;
    border: 6px solid #E5E7EB;
    border-top: 6px solid #2563EB;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {

    100% {
        transform: rotate(360deg);
    }
}
