﻿body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

.site-header .navbar-brand {
    text-decoration: none;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.2;
    max-width: 320px;
}

.navbar .nav-link {
    font-weight: 500;
}

.site-footer {
    font-size: 0.95rem;
}

    .site-footer .footer-link {
        color: #ffffff;
        text-decoration: none;
    }

        .site-footer .footer-link:hover {
            text-decoration: underline;
        }
.hero-section h1 {
    color: #1f3c88;
}

.hero-section .lead {
    color: #495057;
}

.card-title {
    font-weight: 700;
}

section h2 {
    font-weight: 700;
    color: #1f3c88;
}
.site-header {
    z-index: 1030;
}

.main-content {
    padding-top: 110px;
}

.home-page {
    min-height: 100%;
    background: linear-gradient(180deg, #edf4ff 0%, #f7fbff 38%, #ffffff 100%);
    padding-top: 8px;
    padding-bottom: 30px;
}
.custom-card {
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.hero-card {
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.home-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f3c88;
}

.home-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #495057;
}

.hero-image {
    max-height: 340px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f3c88;
}

.section-title-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f3c88;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.05rem;
}

.section-text {
    font-size: 1.06rem;
    line-height: 1.9;
    color: #343a40;
}

.mini-card {
    height: 100%;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 18px;
    padding: 25px 20px;
    box-shadow: 0 6px 18px rgba(31, 60, 136, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .mini-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(31, 60, 136, 0.16);
    }

.mini-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f3c88;
    margin-bottom: 12px;
}

.mini-card-text {
    color: #495057;
    line-height: 1.7;
}

.callout-card {
    background: linear-gradient(135deg, #1f3c88 0%, #3f72c7 100%);
}

.callout-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 767.98px) {
    .home-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-title-small {
        font-size: 1.3rem;
    }

    .home-lead,
    .section-text,
    .callout-text {
        font-size: 1rem;
    }
}

.hero-banner {
    position: relative;
    min-height: 520px;
    border-radius: 30px;
    overflow: hidden;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    box-shadow: 0 18px 38px rgba(13, 33, 74, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-overlay {
    min-height: 520px;
    background: linear-gradient(90deg, rgba(17, 39, 84, 0.82) 0%, rgba(17, 39, 84, 0.58) 45%, rgba(17, 39, 84, 0.30) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    padding: 40px 50px;
}

.hero-content-inner {
    max-width: 720px;
}

.home-title-white {
    color: #ffffff;
    font-size: 2.7rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.home-lead-white {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.18rem;
    line-height: 1.8;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
    .hero-banner,
    .hero-overlay {
        min-height: 430px;
    }

    .hero-content {
        padding: 30px 28px;
    }

    .home-title-white {
        font-size: 2.1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-banner,
    .hero-overlay {
        min-height: 360px;
    }

    .hero-content {
        padding: 24px 20px;
    }

    .home-title-white {
        font-size: 1.7rem;
    }

    .home-lead-white {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.mini-card {
    height: 100%;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 18px;
    padding: 30px 22px;
    box-shadow: 0 6px 18px rgba(31, 60, 136, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(63, 114, 199, 0.08);
}

    .mini-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 30px rgba(31, 60, 136, 0.16);
    }

.mini-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f3c88 0%, #4e7dd8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 22px rgba(31, 60, 136, 0.20);
}

.mini-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f3c88;
    margin-bottom: 12px;
}

.mini-card-text {
    color: #495057;
    line-height: 1.75;
    font-size: 1rem;
}

.about-card {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.section-header {
    align-items: center;
}

.section-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f3c88 0%, #4e7dd8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 18px rgba(31, 60, 136, 0.18);
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1f3c88, #4e7dd8);
    border-radius: 3px;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.custom-card,
.mini-card,
.btn,
.hero-banner,
.hero-image,
.section-icon {
    transition: all 0.25s ease;
}

    .custom-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
    }

    .mini-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 34px rgba(31, 60, 136, 0.18);
    }

    .hero-banner:hover {
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.20);
    }

        .hero-banner:hover .hero-overlay {
            background: linear-gradient(90deg, rgba(17, 39, 84, 0.86) 0%, rgba(17, 39, 84, 0.62) 45%, rgba(17, 39, 84, 0.34) 100%);
        }

.btn {
    border-radius: 12px;
    font-weight: 600;
    padding-left: 20px;
    padding-right: 20px;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    }

.section-icon:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 24px rgba(31, 60, 136, 0.24);
}

.top-info-bar {
    background: linear-gradient(90deg, #1f3c88 0%, #3f72c7 100%);
    color: #ffffff;
    font-size: 0.92rem;
    padding: 8px 0;
}

.top-info-left,
.top-info-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.top-info-right {
    justify-content: flex-end;
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

    .top-info-item i {
        font-size: 0.95rem;
        opacity: 0.95;
    }

    .top-info-item a {
        color: #ffffff;
        text-decoration: none;
    }

        .top-info-item a:hover {
            text-decoration: underline;
        }

.top-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .top-social-link:hover {
        background: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        transform: translateY(-2px);
    }

@media (max-width: 991.98px) {
    .top-info-left,
    .top-info-right {
        justify-content: center;
    }

    .top-info-bar {
        text-align: center;
    }
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 20px;
}

.footer-top-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

    .footer-top-item i {
        font-size: 1.5rem;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.12);
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.footer-top-title {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-top-item a {
    color: #ffffff;
    text-decoration: none;
}

    .footer-top-item a:hover {
        text-decoration: underline;
    }

@media (max-width: 991.98px) {
    .footer-top-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .footer-social-link:hover {
        background: #ffffff;
        color: #1f3c88;
        transform: translateY(-3px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    }

.site-footer {
    background: linear-gradient(180deg, #1c1f26 0%, #11141a 100%);
}

.footer-contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 22px 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.footer-contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f72c7 0%, #6b96e8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 12px 25px rgba(63, 114, 199, 0.35);
    margin-bottom: 10px;
}

.footer-contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-contact-line {
    width: 80px;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, #3f72c7, #6b96e8);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 14px 14px;
    transition: all 0.25s ease;
}

    .footer-contact-item:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.07);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.20);
    }

.footer-contact-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f72c7 0%, #6b96e8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 10px 18px rgba(63, 114, 199, 0.22);
}

.footer-contact-item-text {
    flex: 1;
}

.footer-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
    font-weight: 600;
}

.footer-contact-value {
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 500;
}

.footer-contact-subvalue {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-contact-link {
    color: #ffffff;
    text-decoration: none;
}

    .footer-contact-link:hover {
        color: #9fc0ff;
        text-decoration: underline;
    }

.footer-social-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 28px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.footer-social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .footer-social-link:hover {
        background: #ffffff;
        color: #1f3c88;
        transform: translateY(-3px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    }

@media (max-width: 767.98px) {
    .footer-contact-card {
        padding: 25px 18px;
    }

    .footer-contact-title {
        font-size: 1.6rem;
    }

    .footer-contact-item {
        padding: 16px;
    }

    .footer-contact-item-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 1.1rem;
    }
}

.main-menu .nav-item {
    margin-left: 6px;
}

.main-menu .nav-link {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    color: #24324a;
    padding: 10px 16px !important;
    border-radius: 12px;
    transition: all 0.25s ease;
}

    .main-menu .nav-link:hover,
    .main-menu .nav-link:focus {
        color: #1f3c88;
        background: rgba(31, 60, 136, 0.08);
    }

.main-menu .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.custom-dropdown {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    border: 0;
    border-radius: 18px;
    padding: 10px;
    min-width: 270px;
    margin-top: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.14);
    transition: all 0.22s ease;
}

    /* Bootstrap kontrola za mobilni klik */
    .custom-dropdown.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .custom-dropdown .dropdown-item {
        border-radius: 12px;
        padding: 11px 14px;
        font-weight: 500;
        color: #24324a;
        transition: all 0.2s ease;
    }

        .custom-dropdown .dropdown-item:hover,
        .custom-dropdown .dropdown-item:focus {
            background: linear-gradient(90deg, #eef4ff 0%, #f8fbff 100%);
            color: #1f3c88;
            transform: translateX(4px);
        }

        .custom-dropdown .dropdown-item:active {
            background: linear-gradient(90deg, #1f3c88, #4e7dd8);
            color: #ffffff;
        }

@media (min-width: 992px) {
    .main-menu .dropdown:hover > .custom-dropdown {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-menu .dropdown:hover > .nav-link {
        color: #1f3c88;
        background: linear-gradient(90deg, rgba(31, 60, 136, 0.08) 0%, rgba(78, 125, 216, 0.10) 100%);
        box-shadow: inset 0 0 0 1px rgba(31, 60, 136, 0.06);
    }

        .main-menu .dropdown:hover > .nav-link::after {
            transform: scaleX(1);
        }
}


.navbar {
    backdrop-filter: blur(6px);
}

html {
    scroll-behavior: smooth;
}

.site-header .navbar {
    background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(244,248,255,0.97) 55%, rgba(234,242,255,0.98) 100%) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .site-header .navbar .container {
        position: relative;
    }

.main-menu .nav-item {
    margin-left: 6px;
    position: relative;
}

.main-menu .nav-link {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    color: #24324a;
    padding: 11px 16px !important;
    border-radius: 14px;
    transition: all 0.25s ease;
}

    .main-menu .nav-link:hover,
    .main-menu .nav-link:focus {
        color: #1f3c88;
        background: linear-gradient(90deg, rgba(31, 60, 136, 0.08) 0%, rgba(78, 125, 216, 0.10) 100%);
        box-shadow: inset 0 0 0 1px rgba(31, 60, 136, 0.06);
    }

    .main-menu .nav-link::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 6px;
        height: 3px;
        border-radius: 3px;
        background: linear-gradient(90deg, #1f3c88, #4e7dd8);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.25s ease;
    }

    .main-menu .nav-link:hover::after,
    .main-menu .nav-link:focus::after {
        transform: scaleX(1);
    }

.main-menu .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.25s ease;
}

.main-menu .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.main-menu .dropdown-menu {
    left: 0;
    right: auto;
}

.brand-wrap {
    text-decoration: none;
    gap: 14px;
    padding: 6px 0;
}

.brand-logo-box {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
    box-shadow: 0 10px 24px rgba(31, 60, 136, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.25s ease;
}

.brand-wrap:hover .brand-logo-box {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(31, 60, 136, 0.16);
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1f3c88;
    letter-spacing: 0.3px;
}

.brand-subtitle {
    font-size: 0.88rem;
    color: #5f6f86;
    max-width: 360px;
}

.site-header {
    z-index: 1030;
}

    .site-header .navbar {
        border-bottom: 1px solid rgba(31, 60, 136, 0.06) !important;
    }

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .brand-logo-box {
        width: 58px;
        height: 58px;
        min-width: 58px;
        border-radius: 16px;
    }

    .brand-title {
        font-size: 1.15rem;
    }

    .brand-subtitle {
        font-size: 0.78rem;
        max-width: 240px;
    }
}

.quick-links {
    margin-top: -10px;
}

.quick-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    border-radius: 22px;
    padding: 30px 24px;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 28px rgba(31, 60, 136, 0.12);
    transition: all 0.25s ease;
    border: 1px solid rgba(31, 60, 136, 0.08);
}

    .quick-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(31, 60, 136, 0.18);
        background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    }

.quick-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f3c88 0%, #4e7dd8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 22px rgba(31, 60, 136, 0.25);
    transition: all 0.25s ease;
}

.quick-card:hover .quick-card-icon {
    transform: scale(1.08);
    box-shadow: 0 14px 28px rgba(31, 60, 136, 0.30);
}

.quick-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f3c88;
    margin-bottom: 10px;
}

.quick-card-text {
    color: #495057;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .quick-card {
        padding: 22px 18px;
    }

    .quick-card-title {
        font-size: 1.2rem;
    }

    .quick-card-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 991.98px) {

    .custom-dropdown {
        display: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 12px;
        margin-top: 0;
    }

        .custom-dropdown.show {
            display: block;
        }

    .main-menu .dropdown-toggle::after {
        transform: none !important;
    }
}

.custom-toggler {
    border: 0 !important;
    box-shadow: none !important;
    padding: 6px;
    background: transparent;
}

    .custom-toggler:focus,
    .custom-toggler:active {
        box-shadow: none !important;
        outline: none;
    }

.custom-toggler-box {
    width: 52px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1f3c88 0%, #4e7dd8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 20px rgba(31, 60, 136, 0.18);
    transition: all 0.25s ease;
}

.custom-toggler:hover .custom-toggler-box {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(31, 60, 136, 0.24);
}

.custom-toggler-line {
    width: 22px;
    height: 2.5px;
    border-radius: 2px;
    background: #ffffff;
    display: block;
    transition: all 0.25s ease;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
    }

    .main-menu .nav-item {
        margin-left: 0;
    }

    .main-menu .nav-link {
        border-radius: 12px;
        margin-bottom: 4px;
    }
}

