﻿/* =========================================================
   GENERAL
========================================================= */
:root {
    --main-color: #00566b;
    --second-color: #d9a13a;
    --dark-color: #073846;
    --text-color: #5f6f76;
    --light-bg: #f4fbfb;
    --white: #ffffff;
    --border-color: #dcebed;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    color: var(--dark-color);
    background: var(--white);
    line-height: 1.7;
}

a {
    text-decoration: none;
}

.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--text-color);
        max-width: 650px;
    }
/* =========================================================
   CONTENT TYPOGRAPHY
========================================================= */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

main h1 {
    font-size: 38px;
}

main h2 {
    font-size: 32px;
}

main h3 {
    font-size: 26px;
}

main h4 {
    font-size: 22px;
}

main p {
    color: var(--text-color);
    margin-bottom: 18px;
}

main strong,
main b {
    color: var(--main-color);
    font-weight: 700;
}

main a {
    color: var(--main-color);
    font-weight: 600;
}

    main a:hover {
    color: var(--second-color);
    }

main ul,
main ol {
    padding-left: 22px;
    margin-bottom: 22px;
}

    main ul li,
    main ol li {
        color: var(--text-color);
        margin-bottom: 10px;
    }

        main ul li::marker,
        main ol li::marker {
            color: var(--second-color);
            font-weight: 700;
        }

main blockquote {
    border-left: 4px solid var(--second-color);
    padding: 15px 20px;
    background: var(--light-bg);
    color: var(--text-color);
    border-radius: 6px;
}

main img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    background: var(--main-color);
    padding: 10px 0;
    font-size: 14px;
    color: var(--white);
}

    .topbar a {
        color: var(--white);
        margin-left: 15px;
    }


/* =========================================================
   HEADER / NAVBAR
========================================================= */

.navbar {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
}

    .navbar-brand:hover {
        color: var(--main-color);
    }

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin-left: 20px;
}

    .navbar-nav .nav-link:hover {
        color: var(--main-color);
    }


/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
}

    .dropdown-item:hover {
        background: var(--light-bg);
        color: var(--main-color);
    }

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


/* =========================================================
   HERO / SLIDER
========================================================= */

.hero-slider .carousel-item {
    min-height: 700px;
}

.hero-slider .hero {
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero {
    position: relative;
    padding: 130px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        font-size: 52px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        max-width: 650px;
        margin-bottom: 30px;
    }

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 70px;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 35px;
    height: 35px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-main {
    background: var(--second-color);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: .3s;
}

    .btn-main:hover {
        background: #df8737;
        color: var(--white);
    }

.btn-main,
.btn-outline-light {
    min-width: 170px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   ABOUT
========================================================= */

.about-image img {
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-color);
}


/* =========================================================
   ARTICLE / SERVICE CARDS
========================================================= */

.article-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    color: var(--dark-color);
    transition: .3s;
}

    .article-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
        color: var(--dark-color);
    }

.article-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--light-bg);
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: .3s;
    }

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .article-content h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .article-content p {
        color: var(--text-color);
        margin-bottom: 18px;
        min-height: 75px;
    }

    .article-content span {
        margin-top: auto;
        color: var(--main-color);
        font-weight: 700;
    }


/* =========================================================
   WHY US
========================================================= */

.why-section {
    background: var(--main-color);
    color: var(--white);
}

    .why-section .section-title h2,
    .why-section .section-title p {
        color: var(--white);
    }

.why-box {
    padding: 30px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .3s;
}

    .why-box:hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-5px);
    }

    .why-box h4 {
        font-size: 20px;
        margin-bottom: 12px;
        min-height: 55px;
        display: flex;
        align-items: center;
        color: var(--white);
    }

        .why-box h4 i {
            color: var(--second-color);
            font-size: 24px;
        }

    .why-box p {
        min-height: 70px;
        margin-bottom: 0;
        color: rgba(255,255,255,.85);
    }


/* =========================================================
   BLOG
========================================================= */

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    color: var(--dark-color);
    transition: .3s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
        color: var(--dark-color);
    }

.blog-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: .3s;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .blog-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .blog-content p {
        color: var(--text-color);
    }

    .blog-content span {
        margin-top: auto;
        font-weight: 700;
        color: var(--main-color);
    }


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--main-color);
    color: var(--white);
    padding: 70px 0 20px;
}

    .footer h4 {
        color: var(--white);
        margin-bottom: 20px;
        font-size: 20px;
    }

    .footer p {
        color: rgba(255,255,255,.85);
    }

    .footer a {
        color: rgba(255,255,255,.85);
        transition: .3s;
    }

        .footer a:hover {
            color: var(--second-color);
        }

    .footer ul li {
        margin-bottom: 10px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 30px;
    padding-top: 20px;
    color: rgba(255,255,255,.75);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.copyright-inner {
    background: rgba(255,255,255,.08);
}

.copyright-text p {
    color: rgba(255,255,255,.85);
    font-size: 14px;
}

.developer-logo img {
    height: 38px;
    width: auto;
    transition: .3s;
}

    .developer-logo img:hover {
        opacity: .85;
    }


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.whatsapp-button {
    z-index: 999;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .hero-slider .carousel-item,
    .hero-slider .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .about-content h2 {
        font-size: 30px;
    }
}

@media(max-width:767px) {

    .topbar {
        text-align: center;
    }

        .topbar .container {
            justify-content: center !important;
            gap: 8px;
        }

    .hero {
        padding: 90px 0;
    }

    .hero-slider .carousel-item,
    .hero-slider .hero {
        min-height: 520px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero .btn {
        margin-bottom: 10px;
    }

    .section {
        padding: 60px 0;
    }

    .article-content h3,
    .blog-content h3,
    .article-content p,
    .blog-content p,
    .why-box h4,
    .why-box p {
        min-height: auto;
    }

    .copyright-inner {
        text-align: center;
    }

    .developer-logo {
        margin-top: 15px;
    }
}
/* =========================================================
   PAGE HEADER
========================================================= */
/* =========================================================
   PAGE HEADER
========================================================= */

.page-header {
    position: relative;
    padding: 45px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

    .page-header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(15, 61, 94, .78);
    }

    .page-header .container {
        position: relative;
        z-index: 2;
    }

    .page-header h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--white);
    }

    .page-header nav {
        font-size: 14px;
        color: rgba(255,255,255,.80);
    }

        .page-header nav a {
            color: var(--white);
        }

        .page-header nav span {
            margin: 0 5px;
        }

@media(max-width:767px) {
    .page-header {
        padding: 30px 0;
    }

        .page-header h1 {
            font-size: 24px;
        }

        .page-header nav {
            font-size: 13px;
        }
}
.logo-area {
    display: flex;
    align-items: center;
    max-width: 260px;
    height: 70px;
    overflow: hidden;
}

    .logo-area img {
        max-width: 100%;
        max-height: 60px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-info-box {
    height: 100%;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    transition: .3s;
}

    .contact-info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }

    .contact-info-box i {
        font-size: 38px;
        color: var(--second-color);
        margin-bottom: 15px;
    }

    .contact-info-box h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .contact-info-box a,
    .contact-info-box p {
        color: var(--text-color);
        margin-bottom: 0;
    }

.contact-form-box {
    height: 100%;
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

    .contact-form-box h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .contact-form-box p {
        color: var(--text-color);
        margin-bottom: 25px;
    }

    .contact-form-box .form-control {
        height: 52px;
        border-radius: 6px;
    }

    .contact-form-box textarea.form-control {
        height: auto;
    }

.map-box {
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

@media(max-width:767px) {
    .contact-form-box {
        padding: 25px;
    }

    .map-box {
        min-height: 320px;
    }
}

section.section.blog-section.bg-light {
    padding: 20px 0px;
}

/* =========================================================
   PAGINATION
========================================================= */

.pagination-area {
    margin-top: 50px;
}

.pagination .page-link {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 8px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-weight: 600;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: .3s;
}

    .pagination .page-link:hover {
        background: var(--main-color);
        color: var(--white);
    }

.pagination .page-item.active .page-link {
    background: var(--second-color);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    opacity: .5;
    pointer-events: none;
}

/* =========================================================
   BLOG SIDEBAR
========================================================= */

.blog-sidebar {
    position: sticky;
    top: 25px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

    .sidebar-widget h3 {
        font-size: 22px;
        font-weight: 700;
        color: var(--main-color);
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border-color);
        position: relative;
    }

        .sidebar-widget h3::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 55px;
            height: 2px;
            background: var(--second-color);
        }

    .sidebar-widget .input-group {
        display: flex;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        background: var(--white);
    }

    .sidebar-widget .form-control {
        height: 48px;
        border: none;
        box-shadow: none;
        padding: 0 15px;
        font-size: 14px;
        color: var(--dark-color);
    }

        .sidebar-widget .form-control:focus {
            box-shadow: none;
        }

    .sidebar-widget .btn {
        width: 52px;
        min-width: 52px;
        height: 48px;
        border: none;
        border-radius: 0;
        background: var(--second-color);
        color: var(--white);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        .sidebar-widget .btn:hover {
            background: var(--main-color);
            color: var(--white);
        }

    .sidebar-widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .sidebar-widget ul li {
            margin-bottom: 10px;
            color: var(--text-color);
        }

            .sidebar-widget ul li:last-child {
                margin-bottom: 0;
            }

            .sidebar-widget ul li a {
                color: var(--text-color);
                font-weight: 600;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                padding: 10px 0;
                border-bottom: 1px solid var(--border-color);
                transition: .3s;
            }

            .sidebar-widget ul li:last-child a {
                border-bottom: none;
            }

            .sidebar-widget ul li a:hover {
                color: var(--main-color);
                padding-left: 5px;
            }

            .sidebar-widget ul li a span:last-child {
                min-width: 32px;
                height: 26px;
                padding: 0 8px;
                border-radius: 6px;
                background: var(--light-bg);
                color: var(--main-color);
                font-size: 13px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

.recent-post {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

    .recent-post:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

.recent-post-image {
    width: 86px;
    min-width: 86px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

    .recent-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 8px;
        transition: .3s;
    }

.recent-post:hover .recent-post-image img {
    transform: scale(1.05);
}

.recent-post-content h4 {
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
}

    .recent-post-content h4 a {
        color: var(--dark-color);
        font-weight: 700;
    }

        .recent-post-content h4 a:hover {
            color: var(--second-color);
        }

.sidebar-widget .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .sidebar-widget .tag-list li {
        margin: 0;
    }

        .sidebar-widget .tag-list li a {
            border: none;
            padding: 8px 13px;
            border-radius: 6px;
            background: var(--light-bg);
            color: var(--text-color);
            font-size: 14px;
            font-weight: 600;
        }

            .sidebar-widget .tag-list li a:hover {
                background: var(--second-color);
                color: var(--white);
                padding-left: 13px;
            }

@media(max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 20px;
    }
}

@media(max-width: 575px) {
    .sidebar-widget {
        padding: 20px;
    }

    .recent-post-image {
        width: 76px;
        min-width: 76px;
        height: 62px;
    }

    .recent-post-content h4 {
        font-size: 14px;
    }
}
.hero {
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(15, 61, 94, .78) 0%, rgba(15, 61, 94, .55) 34%, rgba(15, 61, 94, .18) 58%, rgba(15, 61, 94, 0) 100% );
        z-index: 1;
        pointer-events: none;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        color: #ffffff;
        text-shadow: 0 4px 18px rgba(0,0,0,.45);
    }

    .hero p {
        color: rgba(255,255,255,.92);
        text-shadow: 0 3px 12px rgba(0,0,0,.45);
    }

    .hero .btn-outline-light {
        color: #ffffff;
        border-color: rgba(255,255,255,.8);
    }