.h-screen-minus-header-v2 {
    height: calc(100vh - var(--header-h, 250px));
    min-height: 420px;
}

.newsSwiper .swiper-slide {
  display: flex;
  align-items: center;
  height: 28px; /* adjust to your line height */
}

body {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #4a4a4a;
}


h1, h2, h3, h4, h5, h6 {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.animate-zoom {
    animation: zoomInOut 20s ease-in-out infinite;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */

/* Visible keyboard focus ring for all interactive elements */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #f97316;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.section-link {
    position: relative;
    color: #6b7280;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    display: inline-block;
}

.section-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #011f5c; /* primary color */
    transition: width 0.3s ease;
}

.section-link:hover {
    color: #011f5c;
}

.active-section {
    color: #011f5c;
    font-weight: 600;
}

.active-section::after {
    width: 100%;
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eaf2ff, #d7e7ff);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 800;
}

.btn-fill {
    position: relative;
    overflow: hidden;
}

.btn-fill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #f97316; /* orange */
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.btn-fill:hover::before {
    transform: translateX(0);
}

/* keep text above animation */
.btn-fill span,
.btn-fill i {
    position: relative;
    z-index: 10;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active i {
    transform: rotate(45deg); /* + to x */
}

/* =====================================================
   PREMIUM DESIGN ENHANCEMENTS
   ===================================================== */

/* Sticky header with scroll shadow */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 24px rgba(1, 31, 92, 0.14);
}

/* Scroll-to-top button */
#scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: #011f5c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(1, 31, 92, 0.3);
    border: none;
    font-size: 1.1rem;
}

#scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-to-top:hover {
    background: #f97316;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

/* Section label badge */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(1, 31, 92, 0.07);
    color: #011f5c;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label.light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

/* Hero overlay gradient */
.hero-overlay-gradient {
    background: linear-gradient(
        105deg,
        rgba(1, 31, 92, 5.72) 0%,
        rgba(1, 31, 92, 0.38) 55%,
        rgba(0, 0, 0, 0.04) 100%
    );
}

/* Card hover lift */
.card-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(1, 31, 92, 0.13);
}

/* Service card enhanced hover */
.service-card-enhanced {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card-enhanced:hover {
    border-bottom-color: #f97316;
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(1, 31, 92, 0.13);
}

/* Stats strip */
.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-unit {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.stat-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.58);
    margin-top: 0.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Blog card image zoom */
.blog-card-img {
    overflow: hidden;
}

.blog-card-img img {
    transition: transform 0.5s ease;
    width: 100%;
}

.blog-card-img:hover img {
    transform: scale(1.06);
}

/* Top info bar */
.top-info-bar {
    background: #001847;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-info-bar a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.top-info-bar a:hover {
    color: white;
}

/* Nav dropdown animated */
header nav .group > ul {
    display: block !important;
    background: #ffffff !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
    border-top: 3px solid #f97316;
    box-shadow: 0 8px 32px rgba(1, 31, 92, 0.14);
}

header nav .group:hover > ul {
    background: #ffffff !important;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Newsletter input */
.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 10px 16px;
    color: white;
    font-size: 0.875rem;
    outline: none;
    flex: 1;
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

/* Footer link hover */
footer ul a:hover,
footer a:hover {
    color: white !important;
    opacity: 1 !important;
}

/* Hero CTA buttons */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #011f5c;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.hero-btn-primary:hover {
    background: #f0f7fe;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    transition: all 0.25s ease;
    text-decoration: none;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Divider accent line for section titles */
.section-accent-line {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 2px;
    margin-bottom: 12px;
}

/* News ticker premium */
.news-ticker-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f97316;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    height: 44px;
    padding: 0 14px;
    flex-shrink: 0;
}

.news-ticker-wrap {
    background: rgba(0, 0, 0, 0.38);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    height: 44px;
    overflow: hidden;
}

.newsSwiper {
    height: 44px !important;
    overflow: hidden !important;
}

.newsSwiper .swiper-slide {
    height: 44px !important;
    display: flex;
    align-items: center;
}

/* Subtle divider */
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    align-self: center;
}

/* =====================================================
   QUICK ACCESS BUTTONS (individual overlays on hero)
   ===================================================== */

/* Status dot */
.qa-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.qa-dot-open {
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.qa-dot-closing {
    background: #fb923c;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
}

/* Status badge */
.ql-badge {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.ql-badge-open    { background: rgba(74,  222, 128, 0.18); color: #4ade80; }
.ql-badge-closing { background: rgba(251, 146,  60, 0.22); color: #fb923c; }

/* Individual button */
.qa-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(1, 10, 45, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid rgba(249, 115, 22, 0.7);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.qa-btn:hover {
    background: rgba(1, 10, 45, 0.92);
    border-left-color: #f97316;
    border-color: rgba(255, 255, 255, 0.3);
    border-left-color: #f97316;
    transform: translateX(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.qa-btn-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    text-wrap: auto;
}

.fixed-bg-img{
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}