:root {
    --navy: #0d1f3c;
    --navy-mid: #122444;
    --navy-light: #1a3260;
    --orange: #f59419;
    --orange-dark: #d96a10;
    --gold: #f5a623;
    --cream: #f9f6f0;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --white: #ffffff;
    --border-light: #e8e0d0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
}

/* ===== STICKY HEADER WRAPPER ===== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(to right, #0d203d, #005286);
    border-bottom: 1px solid #e0d8cc;
    padding: 9px 0;
    font-size: 0.82rem;
}

.top-bar .tb-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .tb-group:last-child {
    justify-content: flex-end;
}

.top-bar .tb-label {
    color: #ffffff;
}

.top-bar .tb-register {
    background: linear-gradient(135deg, #fa9a20, #ee8b0d);
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: 0.4px;
}

.top-bar .tb-register:hover {
    background: linear-gradient(135deg, #ee8b0d, #d97a00);
    color: #fff;
}

.top-bar .tb-login {
    color: white;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid white;
    padding: 6px 12px;
    border-radius: 3px;
}

.top-bar .tb-login:hover {
    background: var(--navy);
    color: #fff;
}

.top-bar .social-links a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 25px;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar .social-links a:hover {
    color: var(--orange);
}

/* ===== NAVBAR ===== */
.main-nav {
    padding: 0;
    background: #fff;
}

.main-nav .navbar-brand {
    padding: 6px 0;
}

.main-nav .navbar-brand img {
    height: 75px;
    width: auto;
}

.main-nav .nav-link {
    color: var(--navy) !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 20px 20px !important;
    position: relative;
    transition: color 0.2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active-link {
    color: var(--orange) !important;
}

.main-nav .nav-link.active-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px 2px 0 0;
}

.main-nav .dropdown-menu {
    background: white;
    border: none;
    border-radius: 0 0 6px 6px;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.main-nav .dropdown-item {
    color: rgb(13 32 61);
    font-size: 0.9rem;
    padding: 9px 16px;
}

.main-nav .dropdown-item:hover {
    background: var(--orange);
    color: #fff;
}

/* nested submenu — opens LEFT to avoid going off screen */
.main-nav .dropdown-submenu {
    position: relative;
}

.main-nav .dropdown-submenu .dropdown-menu {
    top: 0;
    left: auto;
    right: 100%;
    margin-top: -1px;
    border-radius: 6px 0 6px 6px;
    display: none;
}

.main-nav .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.main-nav .dropdown-submenu > a::after {
    content: "‹";
    float: left;
    margin-right: 8px;
    font-size: 1rem;
    line-height: 1;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ===== HERO ===== */
.hero-section {
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-gear {
    position: absolute;
    right: -30px;
    top: 50%;
    width: 400px;
    opacity: 0.1;
    pointer-events: none;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0 70px;
}

.hero-content .tag-line {
    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 28px;
}

.hero-content h1 span {
    color: #f59419;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #fa9a20, #ee8b0d);
    color: #fff;
    border: 2px solid transparent;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #ee8b0d, #d97a00);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== SECTION TITLES ===== */
.section-title {
    /* font-size: clamp(1.6rem, 3.5vw, 2.4rem); */
    font-weight: 600;
    text-align: center;
    margin-bottom: 36px;
    color: #fff;
}

.section-title.dark {
    color: var(--navy);
}

.section-title span {
    color: var(--orange);
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 12px auto 0;
    border-radius: 2px;
}

.winners-section .section-title::after {
    display: none;
}

.winners-section .swiper-pagination,
.winners-section .jury-swiper .swiper-pagination,
.winners-section .winners-swiper .swiper-pagination {
    display: none;
}

.sub-section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 30px;
}

.sub-section-title span {
    color: var(--orange);
}

.sub-section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin-top: 10px;
    border-radius: 2px;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 70px 0;
}

.about-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        0deg,
        rgba(13, 31, 60, 0.92) 0%,
        transparent 100%
    );
    padding: 28px 16px 14px;
    text-align: center;
}

.about-img-badge .since {
    background: var(--orange);
    font-size: 0.65rem;
    padding: 2px 10px;
    border-radius: 2px;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
}

.about-img-badge .label {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
}

.section-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}

.about-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-content h2 span {
    color: var(--orange);
}

.about-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.78;
    margin-bottom: 12px;
}

.learn-more-btn {
    background: linear-gradient(135deg, #fa9a20, #ee8b0d);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    margin-top: 10px;
}

.learn-more-btn:hover {
    background: linear-gradient(135deg, #ee8b0d, #d97a00);
    color: #fff;
    transform: translateX(3px);
}

/* ===== JURY SECTION ===== */
.jury-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background: url("{{ asset('assets/images/awards-bg.jpg') }}") center/cover
        no-repeat fixed;
}

.jury-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 48, 0.88);
    pointer-events: none;
    z-index: 0;
}

.jury-section > .container {
    position: relative;
    z-index: 1;
}

.jury-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 44px;
    margin-top: 20px;
}

.jury-tab-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 9px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.jury-tab-btn:first-child {
    border-radius: 4px 0 0 4px;
}

.jury-tab-btn:last-child {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.jury-tab-btn.active {
    background: linear-gradient(135deg, #fa9a20, #ee8b0d);
    border-color: #ee8b0d;
    color: #fff;
}

/* Jury Swiper */
.jury-swiper {
    padding: 10px 4px 50px !important;
    height: 310px;
}

.jury-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    text-decoration: none;
    display: block;
}

.jury-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    object-position: center;
    background: #f5f5f5;
    padding: 4px;
}

.jury-card .jury-info {
    padding: 14px 12px;
}

.jury-card .jury-name {
    color: #0d1f3c;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.jury-card .jury-role {
    color: rgb(146, 146, 146);
    font-size: 0.8rem;
    line-height: 1.4;
}

.jury-swiper .swiper-button-next,
.jury-swiper .swiper-button-prev {
    color: var(--orange);
}

.jury-swiper .swiper-button-next::after,
.jury-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 900;
}

.jury-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}

.jury-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
}

.jury-view-all {
    text-align: center;
    margin-top: 10px;
}

.jury-view-all a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 9px 28px;
    border-radius: 4px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.jury-view-all a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* ===== WHY + TIMELINE ===== */
.why-timeline-section {
    background: #fff;
    padding: 70px 0;
}

.why-card {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
    background: #fff;
}

.why-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: var(--orange);
}

.why-card .why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fff5ec, #ffe8cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--orange);
}

.why-card h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== DATES STEPPER ===== */
.dates-stepper {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.date-step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 6px;
    transition: transform 0.2s;
}

.step-body:hover {
    transform: translateX(4px);
}

.step-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    flex: 1;
}

.step-month {
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.dates-view-all {
    color: var(--orange);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dates-view-all:hover {
    color: var(--orange-dark);
}

/* ===== PAST WINNERS ===== */
.winners-section {
    padding: 60px 0;
    position: relative;
    background: url("{{ asset('assets/images/slider/slider-group-image.jpg') }}")
        center/cover no-repeat fixed;
}

.winners-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(8, 18, 42, 0.9); */
    z-index: 0;
}

.winners-section > .container {
    position: relative;
    z-index: 1;
}

.year-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 36px;
}

.year-tab {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.year-tab.active,
.year-tab:hover {
    background: linear-gradient(135deg, #fa9a20, #ee8b0d);
    border-color: #ee8b0d;
    color: #fff;
}

.winners-year-panel {
    display: none;
}

.winners-year-panel.active {
    display: block;
}

/* Winners Swiper */
.winners-swiper {
    padding: 8px 4px 15px !important;
}

.winner-logo-card {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.25s;
    cursor: pointer;
}

.winner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.winner-logo-card img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

.winners-swiper .swiper-button-next,
.winners-swiper .swiper-button-prev {
    color: var(--orange);
}

.winners-swiper .swiper-button-next::after,
.winners-swiper .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 900;
}

.winners-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35);
}

.winners-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
}

/* ===== NEWS ===== */
.news-section {
    padding: 70px 0;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    display: block;
}

.news-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.news-card .news-img {
    height: 180px;
    overflow: hidden;
}

.news-card .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.news-card .news-source {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    padding: 14px 16px 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card .news-source::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
}

.news-card .news-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    padding: 0 16px 16px;
    line-height: 1.5;
}

.more-news-btn {
    background: linear-gradient(135deg, #fa9a20, #ee8b0d);
    color: #fff;
    border: 2px solid transparent;
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    margin-top: 36px;
}

.more-news-btn:hover {
    background: linear-gradient(135deg, #ee8b0d, #d97a00);
    color: #fff;
}

/* ===== FOOTER ===== */
footer.footer-main {
    background: linear-gradient(to right, #0d203d, #16447c);
    color: rgb(255, 255, 255);
    padding: 36px 0 0;
}

footer.footer-main h6 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.55;
}

.footer-contact-item i {
    color: var(--orange);
    margin-top: 8px;
    flex-shrink: 0;
    width: 14px;
}

footer.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.footer-main ul li {
    margin-bottom: 8px;
}

footer.footer-main ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

footer.footer-main ul li a::before {
    content: "›";
    color: var(--orange);
    font-weight: 700;
}

footer.footer-main ul li a:hover {
    color: var(--orange);
}

.footer-logo-img {
    max-height: 100px;
    filter: brightness(0) invert(1);
}

.footer-social a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    margin-right: 6px;
    font-size: 0.8rem;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* Countdown */
.countdown-wrap {
    text-align: center;
}

.countdown-wrap .cd-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.countdown-units {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.countdown-unit {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px 14px;
    text-align: center;
    min-width: 60px;
}

.countdown-unit .cu-val {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.countdown-unit .cu-lbl {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    margin-top: 24px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-gear {
        display: none;
    }

    .main-nav .nav-link {
        padding: 12px 10px !important;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 60px 0 50px;
    }

    .hero-btn-outline {
        margin-top: 10px;
    }

    .about-img-wrap img {
        height: 260px;
    }

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

/* ===== LEADERSHIP PAGE ===== */

/* Hero Banner */
.leadership-hero {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.leadership-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 31, 60, 0.88) 0%,
        rgba(18, 36, 68, 0.75) 100%
    );
}

.leadership-hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.leadership-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.leadership-hero-content h1 span {
    color: var(--orange);
}

.leadership-hero-content .breadcrumb-trail {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.leadership-hero-content .breadcrumb-trail a {
    color: var(--orange);
    text-decoration: none;
}

/* ===== INNER PAGE BANNER (Common for all inner pages) ===== */
.inner-page-banner {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.inner-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 31, 60, 0.88) 0%,
        rgba(18, 36, 68, 0.75) 100%
    );
}

.inner-page-banner .banner-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.inner-page-banner .banner-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.inner-page-banner .banner-content h1 span {
    color: var(--orange);
}

.inner-page-banner .banner-content .breadcrumb-trail {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.inner-page-banner .banner-content .breadcrumb-trail a {
    color: var(--orange);
    text-decoration: none;
}

/* Cards Section */
.leadership-cards-section {
    padding: 70px 0 50px;
}

.leadership-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 31, 60, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leadership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 31, 60, 0.16);
}

.leadership-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.leadership-card:hover .leadership-card-img {
    transform: scale(1.04);
}

.leadership-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.leadership-card-img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(13, 31, 60, 0.25), transparent);
}

.leadership-card-body {
    padding: 22px 24px 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.leadership-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
}

.leadership-card-role {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex-grow: 1;
    text-align: center;
}

/* About Section */
.leadership-about-section {
    padding: 60px 0 70px;
    background: #f8f8f8;
}

.leadership-about-section .lead-text {
    font-size: 1rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 20px;
}

.leadership-about-section .lead-text strong {
    color: var(--navy);
}

.leadership-about-section .highlight-box {
    background: linear-gradient(
        135deg,
        rgba(13, 31, 60, 0.04),
        rgba(245, 148, 25, 0.06)
    );
    border-left: 4px solid var(--orange);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-top: 30px;
}

.leadership-about-section .highlight-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* Decorative divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.section-divider::before,
.section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

/* Responsive */
@media (max-width: 991px) {
    .leadership-card-img {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .leadership-card-img {
        height: 220px;
    }
    .leadership-cards-section {
        padding: 50px 0 30px;
    }
    .leadership-about-section {
        padding: 40px 0 50px;
    }
}

.juries-page {
    padding: 48px 0 64px;
}

/* ── Section heading ── */
.jury-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}
.jury-section-title span {
    color: var(--orange);
}

/* ── Jury tab buttons ── */
.jury-filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.jury-filter-btn {
    padding: 8px 22px;
    border-radius: 4px;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}
.jury-filter-btn.active,
.jury-filter-btn:hover {
    background: var(--navy);
    color: #fff;
}

/* ── Jury grid ── */
.jury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .jury-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .jury-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Jury card ── */
.jury-card-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(13, 31, 60, 0.08);
    cursor: pointer;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    border: 1px solid var(--border-light);
}
.jury-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 31, 60, 0.14);
}
.jury-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
    display: block;
}
.jury-card-body {
    padding: 12px 14px 14px;
}
.jury-card-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
    text-align: center;
}
.jury-card-role {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: center;
}

/* ── Modal custom ── */
.jury-modal .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}
.jury-modal .modal-header {
    background: var(--navy);
    color: #fff;
    padding: 16px 20px;
}
.jury-modal .modal-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}
.jury-modal .btn-close {
    filter: invert(1);
}
.jury-modal .modal-body {
    padding: 20px 24px;
}
.jury-modal .modal-body p {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
}
.jury-modal .modal-body p:last-child {
    margin-bottom: 0;
}
.jury-modal-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    float: left;
    margin: 0 18px 10px 0;
}

/* ===== PROCESS LIST ===== */
.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: process-counter;
}
.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding: 14px 0 14px 52px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}
.process-list li:last-child {
    border-bottom: none;
}
.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 14px;
    width: 32px;
    height: 32px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-list li strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 4px;
}
.process-list li p {
    margin: 0;
    color: var(--text-muted);
}

/* ===== SUBCAT CARD ===== */
.subcat-card {
    text-align: center;
    padding: 12px 8px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: #fff;
    height: 100%;
}
.subcat-img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}
.subcat-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}
.subcat-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 2px 0 0;
}

/* ===== ABOUT LIST ===== */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}
.about-list li {
    position: relative;
    padding: 10px 0 10px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-light);
}
.about-list li:last-child {
    border-bottom: none;
}
.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}
.about-list .about-list {
    margin-top: 8px;
    padding-left: 12px;
    border-left: 2px solid var(--border-light);
}
.about-list .about-list li {
    border-bottom: none;
    padding: 4px 0 4px 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.about-list .about-list li::before {
    width: 5px;
    height: 5px;
    background: var(--navy);
    top: 12px;
}

.testimonial {
    margin: 20px 20px 10px;
}
.testimonial .testimonial-content {
    padding: 30px 25px 35px 36px;
    margin-bottom: 35px;
    background: #e8f1fa;
    position: relative;
}
.testimonial .testimonial-content:before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    border-top: 15px solid #718076;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
}
.testimonial .testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    border-top: 15px solid #718076;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
}
.testimonial-content .testimonial-icon {
    width: 50px;
    height: 45px;
    background: #005184;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before {
    content: "";
    border-bottom: 16px solid #0d213e;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description {
    font-size: 14px;
    font-style: italic;
    color:#0b2b4d;
    line-height: 23px;
    margin: 0;
}
.testimonial .title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post {
    display: block;
    font-size: 14px;
    color: #0cca4a;
}
.owl-theme .owl-controls {
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span {
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background: #0cca4a;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* IMAGE */
.author-img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 6px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* KEY FIX */
}
/* TEXT */
.author-info .title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #525252;
}

.author-info .post {
    font-size: 12px;
    color: #555
}
@media (max-width: 576px) {
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}
