/* ===== 0043 Navy/Dark Blue Theme Styles ===== */

/* Navy-tinted custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1e3a5f, #1e40af);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1e40af, #2563eb);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ===== Card Hover: card-nv ===== */
.card-nv {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(30, 64, 175, 0.2);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.card-nv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e40af, #3b82f6, #1e3a5f);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}
.card-nv:hover::before {
    transform: scaleX(1);
}
.card-nv:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(30, 58, 95, 0.3), 0 0 0 1px rgba(30, 64, 175, 0.35);
    border-color: rgba(30, 64, 175, 0.5);
}

/* ===== Keyframe: nvFloat ===== */
@keyframes nvFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    75% {
        transform: translateY(-6px) rotate(-0.5deg);
    }
}
.nv-float {
    animation: nvFloat 5s ease-in-out infinite;
}

/* ===== Keyframe: nvSlide ===== */
@keyframes nvSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.nv-slide {
    animation: nvSlide 0.55s ease-out forwards;
}

/* Navbar scroll shadow — navy tint */
.navbar-scrolled {
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.3);
    background: rgba(15, 23, 42, 0.97) !important;
    backdrop-filter: blur(12px);
}

/* FAQ accordion — navy theme */
.faq-item {
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}
.faq-item:hover {
    border-color: rgba(30, 64, 175, 0.4);
}
.faq-question {
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s ease;
    user-select: none;
}
.faq-question:hover {
    color: #1e40af;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    color: #475569;
    line-height: 1.7;
    background: #f8fafc;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #1e40af;
}
.faq-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #2563eb;
    font-size: 14px;
}

/* Mobile menu */
.mobile-menu {
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}
.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Navy gradient text */
.text-gradient-nv {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navy gradient button */
.btn-nv {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35);
}
.btn-nv:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(30, 64, 175, 0.5);
    background: linear-gradient(135deg, #1e3a5f, #1e40af);
}

/* Stats bar — navy gradient */
.stats-bar-nv {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
}

/* testimonial card */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(30,64,175,0.1);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    box-shadow: 0 16px 40px rgba(30,64,175,0.15);
    transform: translateY(-4px);
}

/* Active nav pill — navy */
.nav-pill-active {
    background: #1e40af;
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 20px !important;
}
