
        .text-dark-blue { color:#0A3D62; }
        .bg-dark-blue { background:#0A3D62; }
        .offer-item {
        white-space: nowrap;
        animation: ticker 9s linear infinite;
        }

        @keyframes ticker {
        0% { transform: translateY(0); }
        33% { transform: translateY(-20px); }
        66% { transform: translateY(-40px); }
        100% { transform: translateY(0); }
        }

        .navbar-brand img {
            width: 200px !important; /* ✅ Increase width */
            height: 75px !important; /* ✅ Maintain proportion */
            max-height: 80px; /* ✅ Prevent navbar break */
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 10px 16px;
}
.navbar {
    padding-top: 6px;
    padding-bottom: 6px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
}

        /* Top Bar Base Styling */
.top-bar {
    background: #0A3D62;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.offer-marquee {
    font-weight: 600;
}

.btn-blink {
    background-color: #F57C00 !important;
    animation: blink-animation 1.2s infinite;
    border-radius: 5px;
    padding: 6px 15px;
}

@keyframes blink-animation {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.06); }
    100% { opacity: 1; transform: scale(1); }
}
/* MOBILE FIXES */
@media(max-width: 576px) {

    .top-email { 
        display: none !important; 
    }

    .top-contact {
        width: 100%;
        text-align: center;
        margin-bottom: 3px;
        font-size: 13px;
    }

    .top-offer {
        width: 100%;
        text-align: center;
        font-size: 13px;
    }

    .navbar-brand img {
        width: 40px;
        height: auto;
    }

    .navbar {
        padding: 6px;
    }
}
     .animate-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all .8s ease-in-out;
  }
  .animate-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .news-ticker-wrap {
    background: #0A3D62;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

.news-ticker {
    display: inline-block;
    animation: ticker 20s linear infinite;
}

.news-ticker span {
    margin-right: 50px;
    font-weight: 600;
    font-size: 15px;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.apply-btn {
    background: #F57C00;;
    color: #fff;
    padding: 6px 15px;
    font-size: 14px;
    border-radius: 5px;
    border: none;
    margin-left: 10px;
    text-decoration: none;
}
.apply-btn:hover {
    background: #064170;
    color: #fff;
}
.nav-item.cta a {
    background: #0A3D62;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 8px;
}
.nav-item.cta a:hover {
    background: #042a46;
}

/* Accordion Button - Orange Theme */
.accordion-button {
    background-color: #F57C00 !important;
    color: #fff !important;
    font-weight: 600;
}

/* When collapsed */
.accordion-button.collapsed {
    background-color: #ff8c26 !important; /* Slightly lighter */
    color: #fff !important;
}

/* Hover effect */
.accordion-button:hover {
    background-color: #e56f00 !important;
    color: #fff !important;
}

/* Remove default blue shadow focus */
.accordion-button:focus {
    box-shadow: none !important;
}

/* Accordion body styling */
.accordion-body {
    background: #fff;
    border-left: 3px solid #F57C00;
}
.accordion-item {
    border-radius: 10px;
    overflow: hidden;
}
