/**
 * WEBSITE: https://themefisher.com
 */
@import url("https://fonts.googleapis.com/css?family=Muli:300,400,600,700,800,900");

/* ---------- Fixed header offset (prevents overlap) ---------- */
:root {
    --header-offset: 52px; /* fallback; JS can update to exact height if needed */
}

/* Push all content below fixed navbar */
.body-wrapper {
    padding-top: var(--header-offset);
}

/* Smooth in-page anchor scrolling with fixed header */
:target {
    scroll-margin-top: var(--header-offset);
}

/* ---------- Base ---------- */
* {
    box-sizing: border-box
}

body {
    line-height: 1.5;
    font-family: "Muli",sans-serif
}

p, li, input, select, button {
    font-family: "Muli",sans-serif;
    color: #666;
    font-size: 14px;
    font-weight: 400
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Muli",sans-serif;
    font-weight: 600;
    color: #333
}

p {
    color: #888
}

h1 {
    font-size: 35px
}

h2 {
    font-size: 25px
}

h3 {
    font-size: 20px
}

h4 {
    font-size: 18px
}

a {
    transition: all .3s ease;
    color: #000
}

    a:hover, a:focus {
        text-decoration: none;
        color: #5672f9;
        outline: 0
    }

img {
    max-width: 100%;
    display: block
}

/* ---------- Header / nav ---------- */
header {
    position: relative;
    min-height: 20px;
    width: 100%;
    background: linear-gradient(0deg, #0C2340 0%, #00356B 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

    header.fixed-top {
        z-index: 1200
    }

.navigation {
    padding: 1px 0
}

    .navigation .navbar-nav {
        text-align: center
    }

.main-nav .nav-item .nav-link {
    font-size: 13px;
    line-height: 43px;
    padding: 0 20px;
    color: #ffffff;
}

    .main-nav .nav-item .nav-link.dropdown-toggle {
        padding-right: 10px
    }

.main-nav .nav-item.active .nav-link {
    color: #35ecb1;
    font-weight: 700
}

.main-nav .search .nav-link i {
    font-size: 15px;
    height: 43px;
    width: 43px;
    line-height: 43px;
    color: #5672f9;
    border: 1px solid #5672f9;
    border-radius: 3px;
    text-align: center
}

/* ---------- Hero ---------- */
.hero-area {
    position: relative
}

.hero-split {
    min-height: 80vh
}

@media (max-width:991.98px) {
    .hero-split {
        min-height: unset
    }
}

.hero-left, .hero-right {
    padding: 0 !important
}

.hero-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/home/building_img.jpg") center/cover no-repeat
}

    .hero-left:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.45)
    }

    .hero-left .content-block {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 30px 20px
    }

.hero-area .content-block h1 {
    margin-top: 30px;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: 4px
}

@media (max-width:768px) {
    .hero-area .content-block h1 {
        font-size: 40px
    }
}

.hero-area .content-block p {
    color: #fff;
    font-size: 20px
}

@media (max-width:768px) {
    .hero-area .content-block p {
        font-size: 17px
    }
}

.hero-right {
    position: relative
}

    .hero-right .video-fill,
    .hero-right iframe,
    .hero-right video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border: 0;
        z-index: 1
    }

    .hero-right .video-dim {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.5);
        z-index: 2;
        pointer-events: none
    }

    .hero-right .video-caption {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        pointer-events: none
    }

        .hero-right .video-caption span {
            background: rgba(0,0,0,.55);
            color: #fff;
            font-weight: 700;
            padding: .6rem 1rem;
            border-radius: .75rem;
            font-size: clamp(18px,3vw,36px);
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 8px rgba(0,0,0,.4)
        }

/* ---------- Popular quick links ---------- */
.short-popular-category-list {
    margin-top: 40px
}

    .short-popular-category-list h2 {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 700;
        color: #fff
    }

    .short-popular-category-list ul {
        margin-top: 10px
    }

        .short-popular-category-list ul li {
            margin: 0 2px;
            margin-top: 15px
        }

            .short-popular-category-list ul li a {
                border: 1px solid #74fffa;
                color: #c1c1c1;
                font-weight: 200;
                padding: 4px 10px;
                font-size: 12px
            }

                .short-popular-category-list ul li a i {
                    margin-right: 2px
                }

/* ---------- Broadcast bar ---------- */
.cu-floating {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -26px;
    z-index: 1000
}

.cu-broadcast {
    width: 100%;
    background: linear-gradient(0deg, #0C2340 0%, #00356B 100%);
    color: #ffffff;
    box-shadow: -1px 3px 6px rgba(0,0,0,.12)
}

.cu-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px
}

.cu-left, .cu-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.cu-right {
    font-weight: 600
}

.cu-badge {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: black;
    box-shadow: 0 1px 3px rgba(0,0,0,.15)
}

.cu-title {
    font-weight: 700
}

.cu-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: red;
    font-weight: 700
}

.cu-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: cuPulse 1.2s infinite
}

@keyframes cuPulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .35;
        transform: scale(.9)
    }
}

.cu-scroll {
    display: block;
    padding: 8px 12px;
    background: linear-gradient(0deg, rgb(50 113 193) 0%, rgb(0, 53, 107) 100%);
    font-weight: 600;
}

@media (max-width:991.98px) {
    /* On mobile the header is usually taller; give a bigger default offset */
    :root {
        --header-offset: 84px;
    }

    .cu-floating {
        position: static
    }

    .cu-broadcast {
        border-radius: 0
    }
}

/* ---------- Sections & cards ---------- */
.section {
    padding: 30px 0
}

.section-sm {
    padding: 70px 0
}

.section-title {
    position: relative;
    margin-bottom: 75px;
    text-align: center
}

    .section-title h2 {
        font-size: 30px;
        letter-spacing: .05em
    }

        .section-title h2:before {
            content: "";
            display: block;
            margin: 0 auto;
            position: absolute;
            bottom: -24px;
            left: 0;
            right: 0;
            width: 127px;
            height: 2px;
            background: #e0e0e0
        }

        .section-title h2:after {
            content: "";
            display: block;
            margin: 0 auto;
            position: absolute;
            bottom: -25px;
            left: 0;
            right: 0;
            width: 40px;
            height: 5px;
            background: #5672f9
        }

.bg-gray {
    background: #F5F5F5
}

.alt-color {
    color: #c7c7c7
}

.product-item {
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    margin-bottom: 30px
}

    .product-item .card {
        border: none
    }

        .product-item .card .card-body {
            padding: 20px
        }

            .product-item .card .card-body .card-title {
                font-size: 18px;
                margin-bottom: 5px;
                font-weight: 600
            }

/* ---------- Footer ---------- */
.footer {
    background: #412f32
}

    .footer .block h4 {
        color: #fff;
        font-size: 16px;
        margin-bottom: 25px
    }

    .footer .block.about img {
        margin-bottom: 25px
    }

    .footer .block.about p {
        line-height: 26px
    }

    .footer .block ul li {
        margin-bottom: 10px
    }

        .footer .block ul li a {
            display: block;
            font-size: 14px;
            color: #797979
        }

            .footer .block ul li a:hover {
                color: #5672f9;
                text-decoration: underline
            }

.footer-bottom {
    position: relative;
    background: #363839;
    padding: 25px 0
}

    .footer-bottom .copyright p {
        color: #c7c7c7;
        margin-bottom: 0
    }

.scroll-top-to {
    position: fixed;
    right: 20px;
    bottom: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #5672f9;
    color: #fff;
    transition: .3s;
    z-index: 999556;
    cursor: pointer;
    display: none
}

    .scroll-top-to:hover {
        background: #333
    }

@media (max-width:768px) {
    .scroll-top-to {
        bottom: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        line-height: 35px
    }
}

/* ============================================================
   FULL-SCREEN MOBILE OFFCANVAS (clickable & operable)
   ============================================================ */

/* Backdrop — hidden by default, covers viewport when active */
.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1500;
    pointer-events: none;
}

    .offcanvas-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

/* Panel (mobile) */
.offcanvas-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 84px 24px 24px;
    overflow: auto;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

body.offcanvas-open .offcanvas-panel {
    transform: translateX(0)
}

body.offcanvas-open {
    overflow: hidden
}

.offcanvas-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 0;
    background: transparent;
    font-size: 28px;
    color: #333;
    z-index: 2100;
}

/* Links sizing inside offcanvas */
.offcanvas-panel .navbar-nav .nav-link {
    display: block;
    padding: 12px 6px;
    font-size: 18px;
    line-height: 1.4;
    color: #2a2a2a;
}

/* Dropdowns behave inline inside the panel */
.offcanvas-panel .dropdown-menu {
    display: none;
    position: static !important;
    float: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin-top: 0;
}

.offcanvas-panel .dropdown.show > .dropdown-menu {
    display: block
}

/* Desktop overrides: panel acts like regular navbar container */
@media (min-width:992px) {
    .offcanvas-panel {
        position: static;
        transform: none;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        overflow: visible;
    }

    .offcanvas-backdrop {
        display: none !important
    }

    .offcanvas-close {
        display: none
    }

    .offcanvas-panel .navbar-nav .nav-link {
        padding: 0 20px;
        font-size: 13px;
        line-height: 43px
    }
}

/* Keep header layer above hero; offcanvas sits above all */
.navigation, .navbar {
    position: relative;
    z-index: 1210
}

/** css of contact us */
.contact-us-content {
    background-color: #fff3f3;
    padding: 12px;
    border-radius:45px;
}

/* ---------------- Page title banner ---------------- */
/* background image behind text + blue tint overlay */
.page-title {
    position: relative;
    background: #5672f9 url("../images/contact-us/header_img.png") center/cover no-repeat;
    padding: 80px 0; /* banner height; adjust to taste */
    text-align: center;
    margin-top: 0 !important;
}
.page-title::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* blue glaze + slight darkening for readability */
    background: #2a2b2f8c;
    mix-blend-mode: multiply;
}

    .page-title .container {
        position: relative;
        z-index: 1; /* above the banner overlay */
        text-align: center; /* center the title */
    }

/* Title (centered regardless of the left image) */
.page-title-title {
    margin: 0;
    color: #fff;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* --- Left image with blue tint overlay (matches banner) --- */
.page-title-icon-left {
    position: absolute;
    left: 5px; /* distance from viewport left */
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.5;
    z-index: 2; /* above overlay, below text */
}

    .page-title-icon-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Blue tint overlay on the small image */
    .page-title-icon-left::after {
        content: "";
        position: absolute;
        inset: 0;
        background: #5672f9; /* same blue */
        opacity: .22; /* adjust 0.2–0.5 to taste */
        pointer-events: none;
        mix-blend-mode: multiply; /* deepens the blue while keeping detail */
    }

/* Mobile tweaks */
@media (max-width: 576px) {
    .page-title {
        padding: 64px 0;
    }

    .page-title-title {
        font-size: 28px;
    }

    .page-title-icon-left {
        width: 52px;
        height: 52px;
        left: 10px;
        border-radius: 10px;
    }
}
