/* ===== Font Definitions ===== */
@font-face {
    font-family: 'BKoodakBold';
    src: url('/fonts/BKoodakBold.eot');
    src: url('/fonts/BKoodakBold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/BKoodakBold.woff2') format('woff2'),
    url('/fonts/BKoodakBold.woff') format('woff'),
    url('/fonts/BKoodakBold.ttf') format('truetype'),
    url('/fonts/BKoodakBold.svg#BKoodakBold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BTitrTGEBold';
    src: url('/fonts/BTitrTGEBold.eot');
    src: url('/fonts/BTitrTGEBold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/BTitrTGEBold.woff') format('woff'),
    url('/fonts/BTitrTGEBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ===== Font Usage ===== */
body {
    font-family: 'BKoodakBold', sans-serif !important;
}

/* Apply BTitrTGEBold only to slider texts */
.container-slide p,
.container-slide h1,
.container-slide a {
    font-family: 'BTitrTGEBold', sans-serif !important;
}

.home4.section.wave,
.home4.section.wave h1,
.home4.section.wave h2,
.home4.section.wave h3,
.home4.section.wave p,
.home4.section.wave a,
.home4.section.wave span,
.home4.section.wave li,
.home4.section.wave button,
.home4.section.wave input,
.home4.section.wave select {
    font-family: 'BKoodakBold', sans-serif !important;
}

/* Mega dropdown base */
.navbar-nav > li.mega-dropdown {
    position: static; /* so panel stretches full width */
}

.mega-dropdown .mega-menu {
    position: absolute;
    top: 100%;
    right: 0; /* RTL support */
    left: 0;
    width: 100%;
    background: #151A2E;
    border: none;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    display: block;
    height: 0;
    padding: 0;
    transition: height 0.4s ease;
    z-index: 1050;
    color: #fff;
}

/* Content inside mega menu */
.mega-dropdown .mega-menu .row {
    padding: 20px;
}

/* Active state */
.mega-dropdown.open .mega-menu {
    height: 350px; /* adjust to fit content */
    padding: 20px 0;
}

/* Top utility bar */
.top-bar {
    width: 100%;
    background: #2c3e50;
    color: #fff;
    font-size: 14px;
    padding: 8px 0; /* balanced padding */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2001;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Container flex fix */
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* vertical centering */
}

/* Shared link style */
.top-bar .top-links {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-bar .top-links li {
    display: flex;
    align-items: center;   /* align li items center */
}

.top-bar .top-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;   /* align icon + text */
    gap: 6px;
    line-height: 1;        /* no extra spacing */
    transition: color 0.2s;
}

.top-bar .top-links a:hover {
    color: #f5a623;
}

