/* ==========================================================================
   Site Layout Styles — Public-facing _Layout.cshtml
   ========================================================================== */

/* ---------- Base ---------- */
body {
    font-family: 'SolaimanLipi', Arial, sans-serif !important;
}

.content-wrapper > .content {
    padding: 0.5rem .5rem;
}

/* ---------- Service Box ---------- */
.service-box {
    width: 100%;
    height: 100%;
    background: white;
    border: 1px solid var(--primary-color);
    text-align: center;
    padding: 3px;
}

/* ---------- Divider ---------- */
.divider {
    margin: 5px 0px;
    border-bottom: 2px solid;
}

/* ---------- Header / Branding ---------- */
.brand-address {
    font-size: 20px;
    font-weight: bold;
    color: yellow;
}

.brand-text {
    font-size: 2rem;
    color: white;
}

#header-title {
    font-size: 1.25rem;
    font-weight: bold;
}

#header-address {
    font-size: 0.95rem;
}

/* Medium devices (tablets, >=768px) */
@media (min-width: 768px) {
    #header-logo {
        max-height: 80px !important;
    }

    #header-title {
        font-size: 2rem;
    }

    #header-address {
        font-size: 1.1rem;
    }
}

/* Large devices (desktops, >=1200px) */
@media (min-width: 1200px) {
    #header-logo {
        max-height: 100px !important;
    }

    #header-title {
        font-size: 2.5rem;
    }

    #header-address {
        font-size: 1.25rem;
    }
}

/* ---------- Welcome / Marquee ---------- */
.welcome_box {
    margin: 10px 0;
}

.wlwrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #EAEAEA;
}

marquee {
    flex-grow: 1;
    width: 60%;
}

marquee span {
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 15px;
}

.welcome_tag {
    width: 95px;
    background-color: var(--primary-color);
    padding: 5px 12px;
    color: #fff;
}

.welcome_tag span {
    font-size: 18px;
}

/* ---------- Animated Border ---------- */
.animated-border {
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
    border-radius: 5px;
    animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
    0% {
        box-shadow: 0 0 5px #00c0ef, 0 0 10px #00c0ef;
    }
    50% {
        box-shadow: 0 0 15px #00c0ef, 0 0 30px #00c0ef;
    }
    100% {
        box-shadow: 0 0 5px #00c0ef, 0 0 10px #00c0ef;
    }
}

/* ---------- Important Links ---------- */
.importantLinkList {
    background-color: rgb(245, 245, 245);
    padding: 10px 10px 20px;
    border-width: 1px 2px 2px 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-image: initial;
}

.importantLinkList a {
    display: block;
    border-bottom: 1px solid aqua;
}

/* ---------- Media / Events ---------- */
.media-body h2 {
    font-size: 16px;
}

.event-meta ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0px;
    font-size: 12px;
    padding: 0px;
    margin-bottom: 2px;
}

/* ---------- FAQ ---------- */
.faq-single {
    border-bottom: 1px solid lightblue;
    padding: 5px 0px;
}

/* ---------- Navbar ---------- */
.navbar-nav .nav-link {
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #0069d9 !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show > .nav-link,
.navbar-nav .active > .nav-link {
    color: #0056b3 !important;
}

.navbar-nav .nav-link.disabled {
    color: #6c757d !important;
}

/* ---------- Carousel ---------- */
.carousel-inner img {
    height: 400px;
    object-fit: cover;
}

/* ---------- Box (Legacy) ---------- */
.box {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.box.box-solid.box-primary {
    border: 1px solid var(--primary-color);
}

.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
}

.box-header.with-border {
    border-bottom: 1px solid #f4f4f4;
}

.box.box-solid.box-primary > .box-header {
    color: #fff;
    background: var(--primary-color);
    background-color: var(--primary-color);
}

.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion,
.box-header .box-title {
    font-size: 18px;
    margin: 0;
    line-height: 1;
}

.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}
