/* ================================
   Base & Reset
=================================*/
:root {
    --text: #333;
    --muted: #666;
    --bg: #fff;
    --border: #e0e0e0;
    --soft: #f0f0f0;
    --brand: #007bff;
    --brand-dark: #005a9c;
    --color-primary: #002a61;
    --color-primary-dark: #001941;
    --color-secondary: #f7f9fb;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}


/* Better focus visibility */
a,
button,
[role="button"],
input {
    outline: none;
}

    a:focus-visible,
    button:focus-visible,
    [role="button"]:focus-visible,
    input:focus-visible {
        outline: 2px solid var(--brand);
        outline-offset: 2px;
    }

/* Links inherit color by default */
a {
    color: inherit;
    text-decoration: none;
}


.topbar {
    background: #3f3f3f;
    color: #dcdcdc;
    font-size: .875rem
}

    .topbar a {
        color: #fff;
        text-decoration: none;
        opacity: .9
    }

        .topbar a:hover {
            opacity: 1
        }



/* ================================
   Header
=================================*/
.main-header {
    padding: 20px 0;
}

    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.logo img {
    height: 45px;
    max-width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
}


.main-nav li a {
    padding: 10px 15px;
    color: #555;
    font-weight: bold;
    white-space: nowrap;
    transition: color .3s;
}

.navbar-nav .nav-link {
    padding: 10px 15px;
    color: #555;
    font-weight: bold;
    white-space: nowrap;
    transition: color .3s;
}

/* ================================
   Info Section
=================================*/
.info-section {
    background-color: #fff;
    padding: 20px 0;
}

.info-boxes-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.info-box {
    background-color: #fafafa;
    padding: 15px;
    border: 1px solid #e9e9e9;
}

    .info-box:first-child,
    .info-box:last-child {
        background-color: #f3f3f3;
    }

.info-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

    .info-box-header .icon {
        width: 40px;
        height: 40px;
        margin-inline-end: 10px;
    }

    .info-box-header h4 {
        margin: 0;
        font-size: 16px;
        color: #003366;
    }

.info-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.8;
}

    .info-box ul li {
        display: flex;
        align-items: center;
        color: #555;
        font-size: 13px;
    }

    .info-box ul .li-icon {
        background-image: url(../img/arrow-news.png);
        background-repeat: no-repeat;
        width: 16px;
        height: 16px;
        font-size: 0;
    }

.info-box-center p {
    text-align: justify;
    line-height: 1.6;
    color: #555;
    font-size: 13px;
}

.more-btn {
    display: block;
    width: 60px;
    margin: 15px auto 0;
    padding: 5px;
    text-align: center;
    background-color: var(--brand-dark);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}

/* ================================
   Footer
=================================*/
.main-footer {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: var(--muted);
}





/* Top utility bar */

/* Header */


/* Hero slider */
.hero .owl-nav button {
    position: absolute;
    top: 45%;
    /* transform: translateY(-50%); */
    /* background: rgba(255, 255, 255, .75) !important; */
    border-radius: 50%;
    width: 30px;
    height: 100px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}

.hero .owl-nav .owl-prev {
    left: 10px
}

.hero .owl-nav .owl-next {
    right: 10px
}

.owl-nav span {
    font-size: 56px;
    color: #fff;
}

.slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    padding: 1rem 1.25rem;
    text-align: center;
}

    .slide-caption h5 {
        margin: 0;
        font-weight: 600
    }

    .slide-caption small {
        opacity: .9
    }

/* Info blocks */
.info-card {
    border: 1px solid #e5e5e5
}

    .info-card .card-header {
        background: #f7f7f7;
        border-bottom: 1px solid #e5e5e5
    }


.more-btn {
    display: inline-block;
    padding: .25rem .65rem;
    border: 1px solid #0d6efd;
    border-radius: 999px;
    font-size: .875rem
}

/* Footer */
footer {
    border-top: 1px solid #efefef;
    background-color: #f0f0f0;
    font-size: 0.875rem;
    color: #555;
}


    footer .social a {
        color: var(--color-primary);
        transition: color 0.3s ease;
    }

        footer .social a:hover {
            color: var(--color-primary-dark);
        }

.social a {
    font-size: 1.1rem;
    margin-right: .5rem
}

/* Layout width similar to original site on desktop */
@media (min-width: 1200px) {
    .container-narrow {
        max-width: 1100px
    }
}

/* Small niceties */
.search-box input {
    max-width: 220px
}


/* General Styling for the Section */
.blue-print {
    background: linear-gradient(to bottom, #eaeaea, #6b6b6b);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

    .blue-print h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 3rem;
    }


    .blue-print .owl-nav button {
        position: absolute;
        top: 45%;
        /* transform: translateY(-50%); */
        /* background: rgba(255, 255, 255, .75) !important; */
        border-radius: 50%;
        width: 30px;
        height: 100px
    }



    .blue-print .owl-nav .owl-prev {
        left: 10px
    }

    .blue-print .owl-nav .owl-next {
        right: 10px
    }


@media (max-width: 768px) {
    .hero .owl-carousel .owl-item img {
        height: 35vh;
        object-fit: cover;
    }
}



/* Page header */
.page-header {
    background-color: var(--color-secondary);
}

    .page-header h1 {
        font-size: 2rem;
        font-weight: 700;
    }

/* Section headings */
.section-heading {
    font-weight: 600;
    color: var(--color-primary);
}

/* Overview section */
.overview-section .img-wrapper {
    overflow: hidden;
    border-radius: 0.5rem;
}

    .overview-section .img-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

.overview-section .content-box {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

    .overview-section .content-box p {
        font-size: 1rem;
        color: #555;
    }

/* Office section */
.office-section .content-box {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.office-section .img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

/* Services section */
.services-section .service-list li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.services-section .service-list i {
    margin-top: 0.15rem;
}

/* Companies section */
.companies-section .company-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 1.2rem;
}

    .companies-section .company-list li::before {
        content: '\2022';
        position: absolute;
        left: 0;
        top: 0;
        color: var(--color-primary);
        font-size: 1.2rem;
        line-height: 1;
    }