/* ── Modern Discount / Announcement Bar ── */
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0%   { left: -100%; }
    60%, 100% { left: 150%; }
}

.discount-bar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #0d1b6e, #1945ba, #14afe1, #1945ba, #0d1b6e);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    z-index: 1100;
}

.discount-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}

.discount-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 9px 16px;
    font-size: 0.875rem;
    color: #fff;
}

.discount-line-1,
.discount-line-2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-badge {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.discount-text {
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}

.discount-text strong {
    color: #fff;
}

.discount-code {
    background: rgba(255,255,255,0.2);
    border: 1.5px dashed rgba(255,255,255,0.6);
    border-radius: 6px;
    padding: 2px 10px;
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    white-space: nowrap;
}

.discount-cta {
    background: #fff;
    color: #1945ba;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.discount-cta:hover {
    background: #14afe1;
    color: #fff;
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .discount-bar-inner {
        flex-direction: column;
        gap: 5px;
        padding: 7px 12px;
    }

    .discount-line-1 {
        gap: 6px;
        justify-content: center;
    }

    .discount-line-2 {
        gap: 8px;
        justify-content: center;
    }

    .discount-badge {
        font-size: 9px;
        padding: 2px 7px;
        letter-spacing: 0.3px;
    }

    .discount-text {
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }

    .discount-code {
        font-size: 13px;
        padding: 3px 10px;
        letter-spacing: 2px;
    }

    .discount-cta {
        font-size: 12px;
        padding: 4px 14px;
    }
}

/* ─────────────────────────────────────── */
.nav-bg {
    background-color: transparent;
    min-height: 60px !important;
}

.navbar-bg2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    animation: fadeIn 1 forwards;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    min-height: 60px;
    transition-duration: .3s;
}

/* Safari 4.0 - 8.0 */
_:-webkit-full-screen,
_:-webkit-full-screen-ancestor,
_:-webkit-full-screen-ancestor,
.navbar-bg2 {
    -webkit-backdrop-filter: blur(30px);
}

@-moz-document url-prefix() {
    .navbar-bg2 {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(30px);
        /* transition: all .2s ease-in-out; */
        animation: fadeIn 1 forwards;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        min-height: 60px;
        transition-duration: .3s;
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#site-navbar .nav-link {
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    cursor: pointer;
    font-weight: 500;
}

#site-navbar .nav-link:hover {
    color: #14afe1 !important;
}

#site-navbar .navbar-brand {
    color: #a7b3c3;
    font-weight: 500;
    font-size: 15px;
}

.client-area {
    background-color: transparent !important;
    border: 1.5px solid #1945ba !important;
    border-radius: 10px !important;
    width: 155px !important;
    color: #fff !important;
    font-weight: 500 !important;
    margin-right: 10px;
}

.client-area:hover {
    background-color: #1945ba !important;
}

.client-area a {
    text-decoration: none !important;
    color: #ffffff !important;
}

.client-area a:hover {
    color: #ffffff !important;
}

.sign-up:hover {
    background-color: transparent !important;
}

.sign-up {
    background-color: #1945ba !important;
    border: 1.5px solid #1945ba !important;
    border-radius: 10px !important;
    width: 155px !important;
    color: #fff !important;
    font-weight: 500 !important;
}

.sign-up a {
    text-decoration: none;
    color: #ffffff;
}

.sign-up a:hover {
    text-decoration: none;
    color: #ffffff;
}

.active-pinky {
    color: #14afe1 !important;
    font-weight: 500;
    font-size: 15px;
}

.navbar-toggler {
    border: 0px !important;
}

.toggle-color {
    color: #fff;
}

.dft-logo {
    height: 40px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

@media (max-width: 540px) {
    .navbar-collapse {
        padding-top: 10px;
        padding-bottom: 15px;
    }
}
@media (min-width:275px) and (max-width:285px){
    .client-area {
        background-color: transparent !important;
        border: 1.5px solid #1945ba !important;
        border-radius: 10px !important;
        width: 117px !important;
        color: #fff !important;
        font-weight: 500 !important;
        margin-right: 10px;
    }
    .sign-up {
        background-color: #1945ba !important;
        border: 1.5px solid #1945ba !important;
        border-radius: 10px !important;
        width: 117px !important ;
        color: #fff !important;
        font-weight: 500 !important;
    }
    .dft-logo {
        height: 43px !important;
    }
}

#site-navbar .nav-link-fire {
    gap: 8px;
}

.nav-fire-icon {
    color: #ff8a00;
    filter: drop-shadow(0 0 6px rgba(255, 115, 0, 0.55));
    animation: navFireFlicker 1.4s ease-in-out infinite;
}

#site-navbar .nav-link-fire:hover .nav-fire-icon,
#site-navbar .nav-link-fire.active-pinky .nav-fire-icon {
    color: #ffb347;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.75));
}

@keyframes navFireFlicker {
    0%, 100% {
        transform: scale(1) rotate(-4deg);
        opacity: 0.95;
    }

    50% {
        transform: scale(1.12) rotate(4deg);
        opacity: 1;
    }
}