html {
    scroll-padding-top: 90px;
    overflow-x: hidden;
}

/********* General CSS *********/
/*******************************/
body {
    color: #444444;
    background: #dddddd !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #030f27;
    font-family: 'Montserrat', sans-serif;
}

/* Premium Entrance Animations */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -10px;
    left: 0;
    background: #fdbe33;
    transition: width 0.8s ease;
}

.section-header.wow.fadeInUp h2::after {
    width: 60px;
}

@media (max-width: 991.98px) {

    /* Subtle animations for mobile to prevent layout issues */
    .wow.slideInLeft {
        animation-name: slideInLeftMobile !important;
    }

    .wow.slideInRight {
        animation-name: slideInRightMobile !important;
    }

    @keyframes slideInLeftMobile {
        from {
            transform: translateX(-20px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slideInRightMobile {
        from {
            transform: translateX(20px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
}

a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #fdbe33;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background: #ffffff;
    overflow-x: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    /* Jemný tieň okolo celej stránky */
}

.back-to-top {
    position: fixed;
    display: none;
    background: #fdbe33;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #fdbe33;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 90px;
    background: #fdbe33;
    width: 100%;
    margin: 0;
    padding: 0 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-bar .logo {
    padding: 15px 0;
    text-align: left;
    position: relative;
    z-index: 10;
}

.top-bar .logo a {
    display: inline-block;
}

.top-bar .logo h1 {
    margin: 0;
    color: #031130;
    /* Tmavý text na zlatom */
    font-size: 40px;
    line-height: 60px;
    font-weight: 800;
    letter-spacing: 2px;
}

@media (max-width: 575.98px) {
    .top-bar .logo h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon i {
    margin: 0;
    color: #031130;
    font-size: 40px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 2px 0;
    color: #031130;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: #031130;
    font-size: 15px;
    font-weight: 500;
}

.top-bar .top-bar-text p a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar .top-bar-text p a:hover {
    color: #ffffff;
    /* Biely hover ako na zvyšku lišty */
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: #fdbe33;
    /* Pozadie za menu je zlaté, aby neboli biele okraje */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9999 !important;
    /* Increased z-index to fix overlapping issues */
    width: 100%;
    margin: 0;
    height: auto;
}

.nav-bar .navbar {
    background: #030f27 !important;
    width: calc(100% - 60px);
    margin: 0 auto;
    border-radius: 4px;
    padding: 10px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 991.98px) {
    .nav-bar {
        background: #030f27 !important;
        /* Odstránenie žltých okrajov v mobile */
    }

    .nav-bar .navbar {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 5px 15px !important;
        /* Reduced padding */
    }

    .navbar-brand,
    .navbar-toggler,
    .lang-flags {
        position: relative;
        z-index: 20002 !important;
        /* Bring header elements above the fixed menu */
    }
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1366px;
    padding: 0;
    background: #030f27 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .4);
    animation: navAppear 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 991.98px) {
    .nav-bar.nav-sticky {
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
    }
}

.nav-bar.nav-sticky .navbar {
    width: 100%;
    border-radius: 0;
    max-width: 100%;
    padding-left: 60px;
    /* Extra miesta pre logo */
    padding-right: 60px;
}

@keyframes navAppear {
    from {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.nav-bar .navbar {
    height: 100%;
    background: #030f27 !important;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 10px 10px 8px 10px;
    /* Reduced padding from 15px to 10px */
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    /* Explicitly set smaller font for desktop */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hide close button by default (desktop) */
.menu-close-btn {
    display: none;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #fdbe33;
    transition: width 0.3s ease-in-out;
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fdbe33;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #fdbe33;
}

.navbar-brand {
    color: #fdbe33 !important;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    visibility: hidden;
    width: auto;
    /* Zmenené z 0 na auto */
    min-width: 200px;
    /* Aby sa HOTAPO B.V. nezalamovalo */
    margin: 0;
    overflow: visible;
    /* Aby nebolo orezané */
    white-space: nowrap;
}

.nav-sticky .navbar-brand {
    opacity: 1;
    visibility: visible;
    width: auto;
    margin-right: 30px;
}

@media (max-width: 991.98px) {
    .nav-bar {
        width: 100%;
        margin-top: 0;
    }

    .navbar-brand {
        opacity: 1;
        visibility: visible;
        min-width: auto;
        font-size: 18px;
        /* Slightly smaller for mobile row */
        margin-right: 10px;
    }
}

.lang-dropdown-btn {
    display: flex !important;
    align-items: center;
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
    box-shadow: none !important;
}

.lang-dropdown-btn:hover {
    border-color: #fdbe33 !important;
    color: #fdbe33 !important;
}

.lang-dropdown-btn img {
    width: 20px;
    margin-right: 8px;
    border-radius: 2px;
}

.lang-dropdown-menu {
    min-width: 100px !important;
    background: #030f27 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 5px 0 !important;
    margin-top: 10px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.lang-dropdown-menu .dropdown-item {
    color: #ffffff !important;
    font-size: 14px;
    padding: 8px 15px !important;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.lang-dropdown-menu .dropdown-item img {
    width: 18px;
    margin-right: 10px;
}

.lang-dropdown-menu .dropdown-item:hover,
.lang-dropdown-menu .dropdown-item.active {
    background: rgba(253, 190, 51, 0.15) !important;
    color: #fdbe33 !important;
}

@media (max-width: 991.98px) {
    .navbar-utility {
        width: 100%;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 15px;
    }

    .lang-dropdown-btn {
        width: 100%;
        justify-content: center;
    }

    .lang-dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.05) !important;
        box-shadow: none !important;
        margin-top: 5px !important;
    }

    /* Mobile language dropdown in navbar (outside collapsed menu) */
    .navbar .dropdown.d-lg-none {
        position: relative;
    }

    .navbar .dropdown.d-lg-none .lang-dropdown-menu {
        position: absolute !important;
        right: 0 !important;
        left: auto !important;
        top: 100% !important;
        width: auto !important;
        min-width: 120px !important;
        background: #030f27 !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
        margin-top: 5px !important;
    }

    /* Fullscreen Overlay Mobile Menu Styles */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(3, 15, 39, 0.98);
        /* Deep dark blue */
        z-index: 100000 !important;

        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        /* Initial state: Hidden */
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

        padding: 0;
        box-shadow: none;
    }

    .navbar-collapse.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .navbar-nav {
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .nav-bar a.nav-link {
        padding: 15px 0;
        font-size: 18px;
        /* Reduced from 24px to 18px */
        font-weight: 700;
        color: #ffffff !important;
        border: none;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-bar a.nav-link.active {
        color: #fdbe33 !important;
    }

    /* Close Button Style */
    .menu-close-btn {
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 35px;
        color: #ffffff;
        cursor: pointer;
        display: block !important;
        /* Force show on mobile */
        line-height: 1;
        z-index: 100001;
        opacity: 0.8;
    }

    .menu-close-btn:hover {
        color: #fdbe33;
        opacity: 1;
    }

    /* Ensure toggler is clickable if default fails */
    .navbar-toggler {
        z-index: 99999 !important;
    }

    /* Disable backdrop as overlay takes over */
    .menu-backdrop {
        display: none !important;
    }
}



@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        align-items: center !important;
        flex-grow: 1;
    }

    .navbar-nav {
        display: flex;
        align-items: center;
        flex-grow: 1;
        justify-content: center;
        /* Toto vycentruje menu medzi logo a vlajky */
        margin: 0;
    }

    .navbar-utility {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-left: 20px;
    }
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
}

.nav-bar .btn:hover {
    color: #030f27;
    background: #fdbe33;
    border-color: #fdbe33;
}

@media (min-width: 992px) {
    .nav-bar .navbar {
        padding: 10px 45px;
    }
}

.nav-bar a.nav-link {
    padding: 8px 15px;
    font-size: 15px;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px 25px;
    }

    .nav-bar a.nav-link {
        padding: 5px;
    }

    .nav-bar .dropdown-menu {
        box-shadow: none;
    }

    .nav-bar .btn {
        display: none;
    }
}


.top-bar .logo a {
    display: inline-block;
    text-decoration: none;
}

/* Pôvodná verzia loga (zapamätaná)
.floating-logo {
    left: 165px;
    top: 15px;
    width: 190px;
    transform: translateX(-50%);
} */

.floating-logo {
    position: absolute;
    left: 25px;
    top: -20px;
    width: 125px;
    z-index: 10001;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .floating-logo {
        left: 20px;
        width: 110px;
    }
}

@media (max-width: 991.98px) {
    .floating-logo {
        display: none;
        /* Hide on mobile to avoid layout mess, or keep small */
    }
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.carousel-inner {
    z-index: 1;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 500px;
    min-height: 400px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 35px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #030f27;
    background: #fdbe33;
    border-color: #fdbe33;
    transform: scale(1.05);
}

/* Float animation for elements */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }

    .carousel .carousel-caption p {
        font-size: 20px;
    }

    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }

    .carousel .carousel-caption p {
        font-size: 16px;
    }

    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #fdbe33;
}

.page-header h2 {
    position: relative;
    color: #030f27;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #030f27;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #030f27;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h2 {
        font-size: 45px;
    }

    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }

    .page-header h2 {
        font-size: 35px;
    }

    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.section-header.text-center {
    align-items: center;
}

.section-header.text-left {
    align-items: flex-start;
}

.section-header p {
    color: #030f27 !important;
    /* Vždy tmavomodrá v žltom badge */
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin: 0 0 15px 0;
    padding: 6px 18px;
    background: #fdbe33;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 44px;
    /* O niečo elegantnejšia veľkosť */
    font-weight: 800;
    color: #031130;
    /* Hlbšia, luxusnejšia modrá */
    line-height: 1.15;
    letter-spacing: -1.2px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.02);
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .section-header {
        align-items: center !important;
        text-align: center !important;
    }

    .section-header p {
        margin: 0 auto 15px auto !important;
        /* display: table !important; - No longer needed with flex */
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 0;
}

.feature .col-md-12 {
    background: #030f27;
}

.feature .col-md-12:nth-child(2n) {
    color: #030f27;
    background: #fdbe33;
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

@media (max-width: 575.98px) {
    .feature .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
    }
}

.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: #030f27;
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #fdbe33;
}

.feature .feature-icon i {
    position: relative;
    margin: 0;
    color: #fdbe33;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-text {
    padding-left: 30px;
    flex: 1;
}

@media (max-width: 575.98px) {
    .feature .feature-text {
        padding-left: 0;
        padding-top: 30px;
    }
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: #fdbe33;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.feature .feature-text p {
    margin: 0;
    color: #fdbe33;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.feature .col-md-12:nth-child(2n) i,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #030f27;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: #030f27;
}

@media (min-width: 768px) {
    .about .col-md-6:last-child {
        padding-left: 40px;
    }
}

@media (min-width: 992px) {
    .about .col-lg-7 {
        padding-left: 100px;
        /* Poriadny odskok textu od obrázka (aby nebol "nalepený") */
    }
}

.about .section-header {
    margin-bottom: 40px;
}

.about .section-header p {
    margin-left: 0;
    margin-right: auto;
}

.about .about-img {
    position: relative;
    height: 100%;
    box-shadow: 20px 20px 0 rgba(3, 15, 39, 0.1);
    transition: all 0.3s;
}

.about .about-img:hover {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0 rgba(253, 190, 51, 0.5);
}

.about .about-img img,
.about .about-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 17px;
    /* Elegantnejšia veľkosť */
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a4a4a;
    /* Prémiovejšia šedá */
    font-weight: 400;
    letter-spacing: 0.1px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #030f27;
    text-transform: uppercase;
    border-radius: 8px;
    background: #fdbe33;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 10px 20px rgba(253, 190, 51, 0.2);
}

.about .about-text a.btn:hover {
    color: #ffffff;
    background: #030f27;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 15, 39, 0.3);
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 0 0 45px 0;
}

.fact .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}



.fact .fact-icon {
    position: relative;
    margin: 0 0 15px 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon i {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #fdbe33);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon i {
    background-image: linear-gradient(#ffffff, #030f27);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    color: #fdbe33;
    background: #030f27;
}

.fact .fact-right {
    color: #030f27;
    background: #fdbe33;
}

.fact .fact-left h2 {
    color: #fdbe33;
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.service .service-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.service .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff;
}

.service .service-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px;
    width: 100%;
    font-size: 18px;
    font-weight: 800;
    color: #fdbe33;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #fdbe33;
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff;
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 15, 39, 0.9);
    z-index: 1;
}

.video-bg-elem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video .btn-play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#fdbe33, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #030f27;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #030f27;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team .team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #fdbe33;
}

.team .team-img {
    position: relative;
    overflow: hidden;
    height: 300px;
    /* Fixed height for symmetry */
    width: 100%;
}

.team .team-img img,
.team .team-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills the area without distortion */
    transition: .5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #030f27;
    transition: .5s;
    flex-grow: 1;
    /* Pushes content to fill space */
    display: flex;
    flex-direction: column;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fdbe33;
    transition: .5s;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}



.team .team-text p {
    margin: 0;
    color: #ffffff;
}

.team-role {
    color: #999 !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.team-btn {
    background: #fdbe33;
    color: #030f27 !important;
    width: 85%;
    border-radius: 50px;
    padding: 15px 25px;
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover effects */
.team-btn:hover {
    background: transparent;
    border-color: #fdbe33;
    color: #fdbe33 !important;
}




.team .team-item:hover .team-text {
    background: #fdbe33;
}

.team .team-item:hover .team-text h2,
.team .team-item:hover .team-text p,
.team .team-item:hover .team-role {
    color: #030f27 !important;
}

/* Invert button on hover state (when card background is gold) */
.team .team-item:hover .team-btn {
    background: #030f27;
    color: #fdbe33 !important;
    border-color: #030f27;
}


@media (max-width: 767.98px) {
    .team .col-md-6 {
        margin-bottom: 30px;
    }
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
    background: #00acee;
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #3b5998;
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0e76a8;
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #3f729b;
    left: 50px;
    transition: .3s .3s;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #fdbe33;
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }

    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }

    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #fdbe33;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #fdbe33;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #030f27;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 30px 0 0 0;
    padding: 50px 0;
    text-align: center;
    background: #030f27;
    /* Dark background base */
    overflow: hidden;
}

.testimonial-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.18;
    /* Increased opacity */
    filter: brightness(0.6) grayscale(100%);
    /* Slightly brighter */
}

.testimonial .container {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .section-header p {
    background: #fdbe33;
    color: #030f27 !important;
    /* Navy text na zlatej, aby to bolo vidieť */
    padding: 6px 18px;
    border-radius: 4px;
    display: table;
    margin: 0 auto 15px auto;
}

.testimonial .section-header h2 {
    color: #ffffff;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 280px;
    /* Narrow container to force overlap */
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

.testimonial .testimonial-slider-nav .slick-list {
    overflow: visible;
    padding: 20px 0 !important;
}

/* Removed specific media queries for width as 280px fits all */

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    /* Hide non-active slides completely so they don't show up in overflow */
    transition: all 0.3s;
    z-index: 1;
    overflow: visible;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 0.6;
    /* Side images visible but dim */
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.25);
    z-index: 10;
    opacity: 1;
    /* Center image fully visible */
}

@media (max-width: 576px) {
    .testimonial .testimonial-slider-nav .slick-center {
        transform: scale(1.1);
    }
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin: 10px auto;
    width: 110px;
    max-width: none;
    /* Allow full size despite small container */
    height: auto;
    border-radius: 50%;
    border: 4px solid #030f27;
    /* Cutout effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial .testimonial-slider {
    position: relative;
    margin: 5px auto 0 auto;
    max-width: 650px;
    /* Užší kontajner aby text nebol roztahaný */
    padding-top: 10px;
    /* Menej miesta od obrázkov */
}

.testimonial .slider-item {
    background: rgba(255, 255, 255, 0.05);
    /* Jemný sklenený efekt */
    padding: 20px;
    /* Reduced padding */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 5px;
}

.testimonial .testimonial-slider h3 {
    color: #fdbe33;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.testimonial .testimonial-slider h4 {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial .testimonial-slider p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}


/* Prechod na tmavomodré pozadie pre O nás */
.about {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: #030f27;
    /* Navy pozadie */
}

.about .section-header h2 {
    color: #fdbe33;
    /* Zlatý nadpis na navy pozadí */
}

.about .about-text p {
    color: #ffffff;
    /* Biely text pre lepšiu čitateľnosť */
    font-size: 16px;
    line-height: 1.8;
}

.about .about-img video {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #030f27;
    background: #fdbe33;
    border: none;
    border-radius: 4px;
    transition: .3s;
}

.about .btn:hover {
    color: #fdbe33;
    background: #ffffff;
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 700;
    color: #fdbe33;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #fdbe33;
    border-radius: 0;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #ffffff;
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: #f3f6ff;
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #fdbe33;
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #666666;
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 10px 25px 25px 25px;
    background: #f3f6ff;
}

.blog .blog-text p {
    margin: 0;
    font-size: 16px;
}

.blog .pagination .page-link {
    color: #030f27;
    border-radius: 0;
    border-color: #fdbe33;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #fdbe33;
    background: #030f27;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030f27;
    background: #fdbe33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #030f27;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #fdbe33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #030f27;
    background: #fdbe33;
}

.single .comment-form .btn:hover {
    color: #fdbe33;
    background: #030f27;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #fdbe33;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #fdbe33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #030f27;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #fdbe33;
    background: #030f27;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #030f27;
    background: #fdbe33;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px;
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fdbe33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: #fdbe33;
    background: #030f27;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #030f27;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #fdbe33;
    border: none;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #030f27;
    color: #fdbe33;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #fdbe33;
    background: #030f27;
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: .3s;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: #ffffff;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #fdbe33;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #ffffff;
    border-radius: 0;
    transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: #ffffff;
    background: #fdbe33;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .col-md-6 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact .col-md-6:first-child {
    background: #030f27;
}

.contact .col-md-6:last-child {
    background: #fdbe33;
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid rgba(256, 256, 256, .2);
}

.contact .contact-item i {
    margin: 0;
    color: #fdbe33;
    font-size: 40px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: #fdbe33;
    font-size: 20px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: #ffffff;
    height: 40px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form input,
.career .contact-form input,
.career .contact-form textarea {
    color: #333;
    width: 100% !important;
    max-width: 100%;
}

.footer .newsletter .form {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
}

.footer .newsletter input {
    flex: 1;
    margin-right: 0;
}

.footer .newsletter .btn {
    position: relative;
    top: auto;
    right: auto;
    height: 50px;
    margin-left: -2px;
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 185px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
    box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.contact .contact-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fdbe33;
    background: #030f27;
    border: none;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #030f27;
    background: #ffffff;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 0;
    padding-top: 90px;
    background: #030f27;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fdbe33;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #fdbe33;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #fdbe33;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #fdbe33;
    border-color: #fdbe33;
}

.footer .footer-social a:hover i {
    color: #030f27;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .newsletter input,
.footer .newsletter textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px 15px;
    color: #030f27;
}

.footer .newsletter textarea {
    min-height: 80px;
    resize: vertical;
}

.footer .newsletter .btn {
    position: static;
    width: 100%;
    height: auto;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #030f27;
    background: #fdbe33;
    border-radius: 4px;
    border: none;
    transition: .3s;
    cursor: pointer;
    margin-top: 5px;
}

.footer .newsletter .btn:hover {
    background: #ffffff;
    color: #030f27;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #fdbe33;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #fdbe33;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/* Language Flags Switcher */
.lang-flags {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Poriadna medzera medzi vlajkami */
    margin-right: 25px;
}

.lang-flags a {
    display: block;
    opacity: 0.5;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 4px;
    /* Hranaté vlajky */
    padding: 2px;
    line-height: 1;
}

.lang-flags a:hover,
.lang-flags a.active {
    opacity: 1;
    border-color: #fdbe33;
    transform: scale(1.15);
}

.lang-flags img {
    display: block;
    width: 25px;
    /* Obdĺžnikový tvar */
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .lang-flags {
        justify-content: flex-end;
        /* Align right on mobile next to toggler */
        margin-right: 10px;
        margin-top: 0;
        /* Align with logo */
        margin-bottom: 0;
        gap: 8px;
        /* Tighter for mobile */
    }

    .lang-flags img {
        width: 20px;
        /* Smaller for mobile header row */
        height: 13px;
    }

    /* Ensure the mobile flags in the expanded menu (if any) are also handled */
    .navbar-collapse .lang-flags {
        margin: 15px 0;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .section-header.text-left {
        text-align: center !important;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        text-align: center;
        /* Ensure paragraphs are centered */
    }

    /* Center feature items */
    .feature-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-icon {
        margin-bottom: 15px;
    }

    /* Center contact items */
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-text {
        padding-left: 0;
        margin-top: 10px;
    }

    /* Center footer content */
    .footer .footer-contact,
    .footer .footer-link,
    .footer h2 {
        text-align: center;
    }

    .footer h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .footer-social {
        justify-content: center;
        display: flex;
    }
}


@media (max-width: 991.98px) {
    .navbar-collapse .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Ensure links take full width for easier tapping and centering */
    .navbar-nav .nav-link {
        display: inline-block;
        /* Or block if full width tap area desired */
    }
}


/* Career Form Design Improvements */
.career .contact-form {
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

/* Improved Inputs */
.career .contact-form input.form-control,
.career .contact-form textarea.form-control {
    border-radius: 10px !important;
    border: 1px solid #e1e1e1 !important;
    background-color: #f9f9f9 !important;
    padding: 25px 20px !important;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
    color: #333 !important;
}

.career .contact-form input.form-control:focus,
.career .contact-form textarea.form-control:focus {
    border-color: #fdbe33 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(253, 190, 51, 0.15) !important;
    outline: none;
}

/* Improved Labels */
.career {
    position: relative;
    padding: 90px 0;
}

.career label {
    font-weight: 700 !important;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
    color: #030f27;
}

/* Custom Radio Buttons as Chips */
.career .custom-control.custom-radio {
    padding-left: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.career .custom-control-input {
    display: none;
    /* Fully hide the input to use label styling */
}

.career .custom-control-label {
    position: relative;
    padding: 10px 25px;
    background-color: #f0f0f0;
    border: 1px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    user-select: none;
}

/* Remove default Bootstrap pseudo-elements */
.career .custom-control-label::before,
.career .custom-control-label::after {
    display: none !important;
}

/* Active State for Radios */
.career .custom-control-input:checked~.custom-control-label {
    background-color: #030f27;
    color: #fdbe33;
    border-color: #030f27;
    box-shadow: 0 4px 10px rgba(3, 15, 39, 0.2);
    transform: translateY(-1px);
}

.career .custom-control-label:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* Submit Button Overhaul */
.career .contact-form button[type='submit'] {
    background: #030f27 !important;
    color: #fdbe33 !important;
    font-weight: 800 !important;
    font-size: 16px;
    padding: 18px 40px !important;
    border-radius: 50px !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(3, 15, 39, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.career .contact-form button[type='submit']:hover {
    background: #fdbe33 !important;
    color: #030f27 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 190, 51, 0.3);
}

/*******************************/
/********* Custom CTA **********/
/*******************************/
.custom-cta {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    color: #030f27;
}

@media (min-width: 992px) {
    .custom-cta .col-lg-7 {
        padding-right: 70px;
        /* Odskok textu od videa v tejto sekcii */
    }
}

.custom-cta .section-header {
    margin-bottom: 30px;
}

.custom-cta h2 {
    color: #030f27;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.custom-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    letter-spacing: 0.2px;
}

.custom-cta-video {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.custom-cta-video video {
    width: 100%;
    display: block;
}

.custom-cta .btn {
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #030f27;
    background: #fdbe33 !important;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    display: inline-block;
    border: none;
    box-shadow: 0 10px 20px rgba(253, 190, 51, 0.2);
}

.custom-cta .btn:hover {
    color: #ffffff !important;
    background: #030f27 !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 15, 39, 0.3);
}

@media (max-width: 991.98px) {
    .custom-cta {
        padding: 60px 0;
        text-align: center;
    }

    .custom-cta-video {
        margin-top: 45px;
    }
}

@media (max-width: 767.98px) {
    .custom-cta h2 {
        font-size: 28px;
    }
}

/* Legal Modal Styles */
.legal-modal .modal-content {
    border: 2px solid #fdbe33;
    border-radius: 0;
}

.legal-modal .modal-header {
    background: #030f27;
    color: #fdbe33;
    border-bottom: 2px solid #fdbe33;
    border-radius: 0;
}

.legal-modal .modal-title {
    font-weight: 700;
    color: #fdbe33;
    font-family: 'Montserrat', sans-serif;
}

.legal-modal .close {
    color: #ffffff;
    text-shadow: none;
    opacity: 1;
    transition: 0.3s;
}

.legal-modal .close:hover {
    color: #fdbe33;
}

.legal-modal .modal-body {
    padding: 30px;
    background: #ffffff;
}

.legal-modal .modal-body h6 {
    color: #030f27;
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.legal-modal .modal-body h6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 15px;
    width: 3px;
    background: #fdbe33;
}

.legal-modal .modal-body p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-modal .modal-footer {
    border-top: 1px solid #1a253a;
    background: #030f27;
    border-radius: 0;
}

.legal-modal .btn-secondary {
    background: #fdbe33;
    color: #030f27;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.legal-modal .btn-secondary:hover {
    background: #e9af2b;
    color: #030f27;
    cursor: pointer;
}

/* Fix for Modals hiding behind navbar */
.modal-backdrop {
    z-index: 104000 !important;
}

.modal {
    z-index: 105000 !important;
}