body {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'Manrope', sans-serif;
}

::selection {
    color: #fff;
    background: #009f3a;
}

p {
    font-weight: 600;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
}

a {
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
}

.primary-color {
    background-color: #1380C1;
}

.text-primary {
    color: #1380C1;
}

.dark-section {
    background-color: #0b2a69;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.overlay {
    background: rgba(0, 0, 0, 0.55);
}

/* Hide Top Header in Mobile */

@media (max-width: 767px) {

    .top-header {
        display: none !important;
    }

}

/* Nav Links */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1380C1;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: #1380C1;
    padding-left: 20px;
}

/* Arrow */
.arrow {
    width: 7px;
    height: 7px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.group:hover .arrow {
    transform: rotate(225deg);
    border-color: #1380C1;
}

/* Mobile */
.mobile-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-sub-link {
    display: block;
    padding: 8px 0;
    color: #555;
}

/* ====================================== */

/* Partner and collaborator logos */


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    animation: scroll 28s linear infinite;
    width: max-content;
}

.animate-scroll:hover {
    animation-play-state: paused;
}


/* ========================Gallery======================== */

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.4s;
}

.gallery-img:hover {
    transform: scale(1.08);
}


/* Infinite Smooth Scroll */
.animate-scroll {
    width: max-content;
    animation: scroll 20s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Gallery Lightbox */

/* =========================
   GALLERY SECTION
========================= */

.gallery-tabs {
    display: inline-flex;
    background: #fff;
    padding: 8px;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    gap: 10px;
}

.tab-btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #4b5563;
    transition: all 0.35s ease;
}

.tab-btn:hover {
    background: #eaf6ff;
    color: #1380C1;
}

.tab-btn.active-tab {
    background: linear-gradient(135deg, #1380C1, #0b2a69);
    color: #fff;
    box-shadow: 0 12px 25px rgba(19, 128, 193, 0.3);
}


/* =========================
   IMAGE CARD
========================= */

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 42, 105, 0.8),
            transparent);
    opacity: 0;
    transition: 0.4s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-card:hover .gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* LIGHTBOX FIX */

.lb-data .lb-close {
    opacity: 1 !important;
    filter: brightness(0) invert(1);
}

.lightboxOverlay {
    z-index: 9999 !important;
}

.lightbox {
    z-index: 10000 !important;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 1 !important;
}

.lb-closeContainer {
    position: absolute;
    top: -40px;
    right: 0;
}

/* FIX CLOSE BUTTON */

.lb-close {
    background: url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/images/close.png') top right no-repeat !important;
    width: 40px !important;
    height: 40px !important;
    opacity: 1 !important;
    position: absolute;
    top: -45px;
    right: 0;
    z-index: 999999 !important;
}

/* FIX PREV NEXT */
.lb-prev {
    background: url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/images/prev.png') left 48% no-repeat !important;
}

.lb-next {
    background: url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/images/next.png') right 48% no-repeat !important;
}

.lightboxOverlay {
    z-index: 99999 !important;
}

.lightbox {
    z-index: 999999 !important;
}

/* =========================
    AWARD GALLERY STYLE
    ========================= */

.award-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    display: block;
    transition: 0.4s ease;
}

.award-card img {
    transition: transform 0.6s ease;
}

.award-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 42, 105, 0.65),
            rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
}

.award-card::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 2;
}

.award-card:hover img {
    transform: scale(1.08);
}

.award-card:hover::before {
    opacity: 1;
}

.award-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Accordion panel */
.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.acc-content.open {
    max-height: 3000px;
    opacity: 1;
}

/* Chevron rotate */
.acc-chevron {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-btn.active .acc-chevron {
    transform: rotate(180deg);
}

/* Accent line */
.accent-line {
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background: #b5893a;
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Tag badge */
.badge {
    display: inline-block;
    background: #f0e9d8;
    color: #7a5c1e;
    border: 1px solid #d4b87a;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 10px;
    letter-spacing: 0.03em;
}

/* Number bullet */
.num-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 6px 0;
    border-bottom: 1px solid #ede8df;
}

.num-row:last-child {
    border-bottom: none;
}

.num {
    min-width: 26px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0e0f47;
    margin-top: 2px;
}

/* Section icon bg */
.icon-bg {
    width: 38px;
    height: 38px;
    background: #d8daf0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



















/* =========================
   FOOTER CUSTOM CSS
========================= */

.footer-link {
    position: relative;
    color: #d1d5db;
    transition: 0.3s ease;
    padding-left: 0;
}

.footer-link:hover {
    color: #4db8ff;
    padding-left: 8px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon:hover {
    background: #1380C1;
    transform: translateY(-5px);
    color: white;
}