/* ========================================================================
   HISTORY PAGE STYLES
   Timeline, achievements, and sectors sections
   Hero section styles are in shared.css
   ======================================================================== */

/* ============================================
   1. HISTORY INTRO SECTION
   ============================================ */
.history-intro-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.history-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.history-intro-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.history-intro-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-neutral-gray);
    margin-bottom: 1rem;
}

.history-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.history-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.history-intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.1), transparent 60%);
    pointer-events: none;
}

/* Orient watermark on intro image */
.history-intro-image .intro-watermark {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    z-index: 2;
}

[dir="rtl"] .history-intro-image .intro-watermark {
    left: auto;
    right: 20px;
}

/* ============================================
   1.4.5. SECTORS NAVIGATION
   ============================================ */
.sectors-nav-section {
    padding: 0.85rem 0;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(15, 36, 70, 0.08);
    position: sticky;
    top: 68px;
    z-index: 90;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sectors-nav-section.is-sticky {
    padding: 0.65rem 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(29, 159, 218, 0.25);
    box-shadow: 0 8px 30px rgba(15, 36, 70, 0.08);
}



.sectors-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.sectors-nav__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid rgba(15, 36, 70, 0.08);
    background: #ffffff;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.sectors-nav__item i {
    font-size: 0.85rem;
    color: #1d9fda;
    transition: all 0.25s ease;
}

.sectors-nav__item:hover {
    color: #fff;
    background: linear-gradient(135deg, #0f2446, #1d9fda);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 159, 218, 0.3);
}

.sectors-nav__item:hover i {
    color: #fff;
}

.sectors-nav__item.active {
    color: #fff;
    background: linear-gradient(135deg, #0f2446, #1d9fda);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(29, 159, 218, 0.3);
}

.sectors-nav__item.active i {
    color: #fff;
}

/* Smooth scroll offset */
[id] {
    scroll-margin-top: 120px;
}

@media (max-width: 991px) {
    .sectors-nav-wrapper {
        gap: 0.6rem;
    }
}

@media (max-width: 767px) {
    .sectors-nav-section {
        padding: 0.6rem 0;
    }

    .sectors-nav-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
    }

    .sectors-nav-badge {
        align-self: center;
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    .sectors-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.35rem;
        padding: 0.2rem 0.25rem 0.4rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sectors-nav::-webkit-scrollbar {
        display: none;
    }

    .sectors-nav__item {
        padding: 0.38rem 0.75rem;
        font-size: 0.72rem;
    }
}

/* ============================================
   1.5. HEALTHCARE SECTION
   ============================================ */
.healthcare-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f6fb 0%, #f7fafd 50%, #ffffff 100%);
    position: relative;
    border-top: 1px solid rgba(15, 36, 70, 0.05);
}

/* Summary Stats Row */
.healthcare-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.75rem;
}

.healthcare-summary__card {
    background: #ffffff;
    border: 1px solid rgba(2, 132, 199, 0.12);
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.healthcare-summary__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0284c7, #1d9fda, #38bdf8);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.healthcare-summary__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(2, 132, 199, 0.14);
    border-color: rgba(2, 132, 199, 0.35);
}

.healthcare-summary__card:hover::before {
    opacity: 1;
}

.healthcare-summary__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(2, 132, 199, 0.08);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    transition: all 0.3s ease;
}

.healthcare-summary__card:hover .healthcare-summary__icon {
    background: linear-gradient(135deg, #0284c7, #1d9fda, #38bdf8);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.3);
}

.healthcare-summary__number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #0f2446;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: inherit;
}

.healthcare-summary__label {
    font-size: 0.88rem;
    color: #5a6a85;
    font-weight: 700;
    margin-top: 0.4rem;
}

/* Tabs Container - Sky Blue Gradient Sub-filter Dock */
.healthcare-tabs-wrapper {
    position: relative;
    margin-bottom: 2.75rem;
    background: rgba(2, 132, 199, 0.04);
    border: 1px solid rgba(2, 132, 199, 0.12);
    border-radius: 24px;
    padding: 0.75rem;
}

.healthcare-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.healthcare-tab {
    padding: 0.55rem 1.05rem;
    border-radius: 50px;
    border: 1px solid rgba(2, 132, 199, 0.16);
    background: #ffffff;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.healthcare-tab i {
    font-size: 0.85rem;
    color: #0284c7;
    transition: color 0.25s ease;
}

.healthcare-tab:hover {
    border-color: #0284c7;
    color: #0284c7;
    background: rgba(2, 132, 199, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.18);
}

.healthcare-tab.active {
    background: linear-gradient(135deg, #0284c7 0%, #1d9fda 50%, #38bdf8 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.healthcare-tab.active i {
    color: #ffffff;
}

/* Tab count badge */
.healthcare-tab__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 50px;
    background: rgba(2, 132, 199, 0.08);
    color: #0284c7;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0 0.4rem;
    transition: all 0.25s ease;
}

.healthcare-tab.active .healthcare-tab__count {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

@media (max-width: 767px) {
    .healthcare-tabs-wrapper {
        padding: 0.6rem;
        border-radius: 18px;
        margin-bottom: 2rem;
    }

    .healthcare-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        width: 100%;
    }

    .healthcare-tab {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0.65rem 0.75rem;
        font-size: 0.78rem;
        border-radius: 12px;
        white-space: normal;
        text-align: start;
        gap: 0.45rem;
    }

    .healthcare-tab i {
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .healthcare-tab__count {
        margin-inline-start: auto;
        flex-shrink: 0;
        min-width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

@media (max-width: 420px) {
    .healthcare-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .healthcare-tab {
        padding: 0.55rem 0.5rem;
        font-size: 0.72rem;
        border-radius: 10px;
        gap: 0.35rem;
    }
}

/* Panels */
.healthcare-panel {
    display: none;
}

.healthcare-panel.active {
    display: block;
    animation: fadeInPanel 0.35s ease;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Grid - Always Centered with Fixed Max-Width */
.healthcare-grid,
.healthcare-grid--cols-2,
.healthcare-grid--cols-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin: 0 auto;
    width: 100%;
}

/* Card */
.healthcare-card {
    flex: 0 1 270px;
    width: 270px;
    max-width: 285px;
    min-width: 240px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 36, 70, 0.08);
    box-shadow: 0 4px 18px rgba(15, 36, 70, 0.04);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.healthcare-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 36, 70, 0.12);
    border-color: rgba(29, 159, 218, 0.3);
}

/* Performance: will-change for frequently animated cards */
.healthcare-card,
.education-slider-card,
.relief-camp-card {
    will-change: transform;
}

/* Card Image */
.healthcare-card__image {
    position: relative;
    height: 165px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4f9 0%, #e3edf7 100%);
}

.healthcare-card__image img:not(.healthcare-card__watermark) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.healthcare-card:hover .healthcare-card__image img:not(.healthcare-card__watermark) {
    transform: scale(1.06);
}

.healthcare-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 36, 70, 0.35) 0%, transparent 60%);
    pointer-events: none;
}

/* Watermark on card image */
.healthcare-card__watermark {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 18px;
    height: 18px;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    z-index: 2;
}

[dir="rtl"] .healthcare-card__watermark {
    left: auto;
    right: 10px;
}

/* Badge on card */
/* Badge on card - High Contrast & Crystal Clear */
.healthcare-card__badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #0f2446;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1.5px solid #1d9fda;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

[dir="rtl"] .healthcare-card__badge {
    right: auto;
    left: 10px;
}

.healthcare-card__badge::before {
    content: '\f0c0';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', 'FontAwesome';
    font-weight: 900;
    color: #0284c7;
    font-size: 0.76rem;
    margin-inline-end: 2px;
}

/* Card Body */
.healthcare-card__body {
    padding: 1.15rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

.healthcare-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #1d9fda;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.healthcare-card__date i {
    font-size: 0.7rem;
}

.healthcare-card__name {
    font-size: 0.96rem;
    color: #0f2446;
    line-height: 1.45;
    margin: 0;
}

/* Medical Services Ticker */
.med-ticker {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.03), rgba(var(--accent-color-rgb), 0.03));
    border: 1px solid rgba(var(--main-color-rgb), 0.08);
    border-radius: 16px;
    overflow: hidden;
    padding: 1rem 0;
}

.med-ticker__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem 1.5rem;
}

.med-ticker__title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600;
    color: #0f2446 !important;
    margin: 0;
    line-height: 1.3;
}

.med-ticker__track-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.med-ticker__track {
    display: flex;
    gap: 0.5rem;
    width: max-content;
    animation: medTickerScroll 60s linear infinite;
}

[dir="rtl"] .med-ticker__track {
    animation-name: medTickerScrollRtl;
}

.med-ticker:hover .med-ticker__track {
    animation-play-state: paused;
}

.med-ticker__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(var(--main-color-rgb), 0.08);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.med-ticker__item:hover {
    background: #fff;
    border-color: rgba(var(--main-color-rgb), 0.2);
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), 0.1);
    transform: translateY(-2px);
}

.med-ticker__item i {
    font-size: 1.1rem;
    color: var(--accent-color);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.08), rgba(var(--accent-color-rgb), 0.08));
}

.med-ticker__name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-neutral-gray);
    line-height: 1.3;
}

.med-ticker__count {
    font-size: 1rem;
    font-weight: 900;
    color: var(--main-color);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

@keyframes medTickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes medTickerScrollRtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

@media (max-width: 767px) {
    .med-ticker {
        margin-top: 1.5rem;
    }

    .med-ticker__track {
        animation-duration: 45s;
    }

    .med-ticker__header {
        font-size: 0.72rem;
    }
}

/* Sector Stats (reusable - matches achievements design) */
.sector-stats {
    position: relative;
    margin-top: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    padding: 2.5rem 2rem;
}

.sector-stats__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(23, 37, 84, 0.92) 0%,
            rgba(var(--main-color-rgb), 0.88) 40%,
            rgba(var(--accent-color-rgb), 0.85) 100%);
    z-index: 0;
}

.sector-stats__bg::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.sector-stats__bg::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.sector-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.sector-stats__card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sector-stats__card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.sector-stats__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: #fff;
    transition: all 0.4s ease;
}

.sector-stats__card:hover .sector-stats__icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.sector-stats__number {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.sector-stats__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 991px) {
    .healthcare-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .sector-stats__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .healthcare-section {
        padding: 3rem 0;
    }

    .healthcare-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .healthcare-summary__number {
        font-size: 1.5rem;
    }

    .healthcare-grid,
    .healthcare-grid--cols-2,
    .healthcare-grid--cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .healthcare-card__image {
        height: 110px;
    }

    .healthcare-card__body {
        padding: 0.75rem;
    }

    .healthcare-card__name {
        font-size: 0.8rem;
    }

    .sector-stats {
        padding: 1.25rem 0.75rem;
        margin-top: 1.5rem;
        border-radius: 16px;
    }

    .sector-stats__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .sector-stats__card {
        padding: 0.75rem 0.5rem;
        border-radius: 12px;
    }

    .sector-stats__icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .sector-stats__number {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .sector-stats__label {
        font-size: 0.68rem;
    }
}

@media (max-width: 575px) {
    .healthcare-summary__card {
        padding: 0.85rem 0.5rem;
    }

    .healthcare-summary__number {
        font-size: 1.15rem;
    }

    .healthcare-summary__label {
        font-size: 0.7rem;
    }
}


/* ============================================
   1.6. EDUCATION SECTION
   ============================================ */
.education-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fdf9f2 50%, #ffffff 100%);
    position: relative;
    border-top: 1px solid rgba(15, 36, 70, 0.05);
}

.education-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.education-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-neutral-gray);
}

/* Education Summary */
.education-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.education-summary__card {
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.04), rgba(var(--accent-color-rgb), 0.04));
    border: 1px solid rgba(var(--main-color-rgb), 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.education-summary__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--main-color-rgb), 0.1);
    border-color: rgba(var(--main-color-rgb), 0.15);
}

.education-summary__number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--main-color);
    line-height: 1.2;
}

.education-summary__label {
    font-size: 0.85rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Education Services Strip */
.education-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.education-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 1.5rem 1.25rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.education-service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(var(--main-color-rgb), 0.1);
}

.education-service-item__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.12), rgba(var(--main-color-rgb), 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color, #1D9FDA);
    font-size: 1.25rem;
}

.education-service-item__text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.65;
    font-weight: 500;
    text-align: center;
    padding-top: 0;
}

.education-service-item__text strong {
    color: var(--main-color, #1D9FDA);
    font-weight: 800;
}

/* Education Slider */
.education-slider-wrapper {
    position: relative;
}

.education-swiper {
    padding-bottom: 3rem;
}

.education-swiper .swiper-pagination {
    bottom: 0 !important;
}

.education-swiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: var(--main-color) !important;
    opacity: 0.2 !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.education-swiper .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 28px !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color)) !important;
}

.education-slider-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.education-slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(var(--main-color-rgb), 0.12);
    border-color: rgba(var(--main-color-rgb), 0.15);
}

.education-slider-card__image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.education-slider-card__image img:not(.education-slider-card__watermark) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.education-slider-card:hover .education-slider-card__image img:not(.education-slider-card__watermark) {
    transform: scale(1.05);
}

.education-slider-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--main-color-rgb), 0.3), transparent 60%);
    pointer-events: none;
}

.education-slider-card__watermark {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 18px;
    height: 18px;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    z-index: 2;
}

[dir="rtl"] .education-slider-card__watermark {
    left: auto;
    right: 10px;
}

.education-slider-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--main-color);
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

[dir="rtl"] .education-slider-card__badge {
    right: auto;
    left: 10px;
}

.education-slider-card__type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    z-index: 2;
}

[dir="rtl"] .education-slider-card__type {
    left: auto;
    right: 10px;
}

.education-slider-card__body {
    padding: 1.25rem;
}

.education-slider-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.4;
    margin: 0 0 0.5rem;
}

.education-slider-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.education-slider-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
}

.education-slider-card__meta-item i {
    font-size: 0.65rem;
    color: var(--accent-color);
}

/* Slider Navigation Arrows */
.education-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(var(--main-color-rgb), 0.12);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.education-slider-nav:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.education-slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.education-slider-nav--prev {
    left: -20px;
}

.education-slider-nav--next {
    right: -20px;
}

[dir="rtl"] .education-slider-nav--prev {
    left: auto;
    right: -20px;
}

[dir="rtl"] .education-slider-nav--next {
    right: auto;
    left: -20px;
}

/* Education Responsive */
@media (max-width: 991px) {
    .education-services {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 767px) {
    .education-section {
        padding: 3rem 0;
    }

    .education-summary {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .education-summary__card {
        padding: 0.85rem 0.5rem;
    }

    .education-summary__number {
        font-size: 1.15rem;
    }

    .education-summary__label {
        font-size: 0.68rem;
    }

    .education-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .education-service-item {
        padding: 1.15rem 0.65rem;
        gap: 0.5rem;
        border-radius: 14px;
    }

    .education-service-item__icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.15rem;
        border-radius: 12px;
    }

    .education-service-item__text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .education-service-card {
        padding: 0.85rem;
    }

    .education-service-card__icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .education-service-card__name {
        font-size: 0.72rem;
    }



    .education-slider-card__image {
        height: 130px;
    }
}

/* ============================================
   1.7. RELIEF SECTION
   ============================================ */
.relief-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f2f7f9 50%, #ffffff 100%);
    position: relative;
    border-top: 1px solid rgba(15, 36, 70, 0.05);
}

.relief-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.relief-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-neutral-gray);
}

/* Relief Stats Row */
.relief-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.relief-stats__card {
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.04), rgba(var(--accent-color-rgb), 0.04));
    border: 1px solid rgba(var(--main-color-rgb), 0.08);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.relief-stats__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--main-color-rgb), 0.1);
}

.relief-stats__number {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--main-color);
    line-height: 1.2;
}

.relief-stats__label {
    font-size: 0.8rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Camps Sub-Section */
.relief-subsection-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.relief-subsection-title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600;
    color: #0f2446 !important;
    margin: 0;
    line-height: 1.3;
}

.relief-subsection-desc {
    font-size: 0.95rem;
    color: var(--color-neutral-gray);
    margin: 0;
    max-width: 600px;
}

/* Camps Grid */
.relief-camps-swiper {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

/* Desktop grid: hide pagination */
@media (min-width: 992px) {
    .relief-camps-swiper {
        padding-bottom: 1rem;
    }

    .relief-camps-swiper .swiper-pagination {
        display: none;
    }

    .relief-camps-swiper .swiper-wrapper {
        gap: 16px 0;
    }
}

/* Pagination dots styling */
.relief-camps-swiper .swiper-pagination {
    bottom: 0 !important;
    margin-top: 1rem;
}

.relief-camps-swiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: var(--main-color) !important;
    opacity: 0.2 !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.relief-camps-swiper .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 28px !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color)) !important;
}

.relief-camp-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.relief-camp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(var(--main-color-rgb), 0.15);
}

.relief-camp-card__image {
    height: 180px;
    overflow: hidden;
}

.relief-camp-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.relief-camp-card:hover .relief-camp-card__image img {
    transform: scale(1.08);
}

.relief-camp-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--main-color-rgb), 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    transition: background 0.3s ease;
}

.relief-camp-card:hover .relief-camp-card__overlay {
    background: linear-gradient(to top, rgba(var(--main-color-rgb), 0.85) 0%, rgba(var(--main-color-rgb), 0.2) 70%);
}

.relief-camp-card__number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--main-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

[dir="rtl"] .relief-camp-card__number {
    right: auto;
    left: 10px;
}

.relief-camp-card__tents {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
}

[dir="rtl"] .relief-camp-card__tents {
    left: auto;
    right: 10px;
}

.relief-camp-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.relief-camp-card__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.relief-camp-card:hover .relief-camp-card__zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Camp Modal */
.camp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.camp-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.camp-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.35s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.camp-modal__header {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.camp-modal__header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camp-modal__header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--main-color-rgb), 0.6), transparent 50%);
}

.camp-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--main-color);
    z-index: 2;
    transition: all 0.3s ease;
}

[dir="rtl"] .camp-modal__close {
    right: auto;
    left: 12px;
}

.camp-modal__close:hover {
    background: var(--main-color);
    color: #fff;
}

.camp-modal__body {
    padding: 1.5rem;
}

.camp-modal__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--main-color);
    margin: 0 0 0.5rem;
}

.camp-modal__location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.camp-modal__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.camp-modal__stat {
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.04), rgba(var(--accent-color-rgb), 0.04));
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
}

.camp-modal__stat-number {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--main-color);
}

.camp-modal__stat-label {
    font-size: 0.7rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
}

.camp-modal__partners {
    font-size: 0.82rem;
    color: var(--color-neutral-gray);
    line-height: 1.6;
}

.camp-modal__partners strong {
    color: var(--main-color);
}

/* Containers Sub-Section */
.relief-containers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.relief-containers__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.relief-containers__image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    filter: brightness(0.93) contrast(1.03);
}

.relief-containers__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.1), transparent 60%);
    pointer-events: none;
}

.relief-containers__image .intro-watermark {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    opacity: 0.4;
    filter: brightness(0) invert(1);
    z-index: 2;
}

[dir="rtl"] .relief-containers__image .intro-watermark {
    left: auto;
    right: 16px;
}

.relief-containers__info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--main-color);
    margin: 0 0 1rem;
}

.relief-containers__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.relief-containers__highlight {
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.04), rgba(var(--accent-color-rgb), 0.04));
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(var(--main-color-rgb), 0.06);
}

.relief-containers__highlight-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--main-color);
    line-height: 1.2;
}

.relief-containers__highlight-label {
    font-size: 0.75rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
    margin-top: 0.15rem;
}

.relief-containers__desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--color-neutral-gray);
    margin-bottom: 1rem;
}

.relief-containers__partner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.06), rgba(var(--accent-color-rgb), 0.06));
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--main-color);
}

.relief-containers__partner i {
    font-size: 0.7rem;
    color: var(--accent-color);
}

/* Partners section (previously inline styles) */
.relief-containers__partners-section {
    margin-top: 0.25rem;
}

.relief-containers__partners-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-neutral-gray);
    margin-bottom: 0.5rem;
}

.relief-containers__partners-label i {
    color: var(--accent-color);
}

.relief-containers__partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

/* Relief Responsive */
@media (max-width: 991px) {
    .relief-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }



    .relief-containers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .relief-section {
        padding: 3rem 0;
    }

    .relief-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
    }

    .relief-stats__card {
        padding: 0.75rem 0.35rem;
        border-radius: 12px;
    }

    .relief-stats__number {
        font-size: 1rem;
    }

    .relief-stats__label {
        font-size: 0.62rem;
    }

    .relief-camps-header {
        margin-top: 0.5rem;
    }



    .camp-modal {
        max-width: 100%;
        margin: 0.5rem;
    }

    .camp-modal__header {
        height: 160px;
    }

    .camp-modal__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .relief-containers__image img {
        height: 220px;
    }
}

/* ============================================
   1.8. VOCATION SECTION
   ============================================ */
.vocation-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f8f4 50%, #ffffff 100%);
    position: relative;
    border-top: 1px solid rgba(15, 36, 70, 0.05);
}

.vocation-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.vocation-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-neutral-gray);
}

/* Workshop Cards Grid */
.vocation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.vocation-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.vocation-card:hover {
    box-shadow: 0 16px 50px rgba(var(--main-color-rgb), 0.1);
    transform: translateY(-3px);
}

/* Card Header */
.vocation-card__header {
    padding: 1.25rem 1.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vocation-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.vocation-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--main-color);
    margin: 0;
    line-height: 1.3;
}

.vocation-card__subtitle {
    font-size: 0.75rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
}

/* Card Slider (Swiper) */
.vocation-swiper {
    margin: 0 1rem;
    border-radius: 14px;
    overflow: hidden;
    height: 220px;
}

.vocation-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vocation-swiper .swiper-pagination {
    bottom: 8px !important;
}

.vocation-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 7px;
    height: 7px;
}

.vocation-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--main-color);
    width: 20px;
    border-radius: 10px;
}

/* Card Stats */
.vocation-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem 1.25rem 1.25rem;
}

.vocation-card__stat {
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.04), rgba(var(--accent-color-rgb), 0.04));
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
}

.vocation-card__stat-number {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--main-color);
    line-height: 1.2;
}

.vocation-card__stat-label {
    font-size: 0.7rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
    margin-top: 0.15rem;
}

.vocation-card__note {
    padding: 0 1.25rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--accent-color);
    font-weight: 600;
}

.vocation-card__note i {
    font-size: 0.65rem;
}

/* Vocation Responsive */
@media (max-width: 767px) {
    .vocation-section {
        padding: 3rem 0;
    }

    .vocation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vocation-card {
        border-radius: 14px;
    }

    .vocation-swiper {
        height: 150px;
    }

    .vocation-card__title {
        font-size: 0.82rem;
    }

    .vocation-card__type {
        font-size: 0.65rem;
    }
}

/* ============================================
   1.9. DOCUMENTATION & HUMAN RIGHTS
   ============================================ */
.documentation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f2446 0%, #1a3a6c 50%, #0f2446 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.documentation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}



.documentation-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.documentation-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
}

/* Mini Timeline */
.doc-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    position: relative;
}

.doc-timeline__point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

.doc-timeline__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(var(--accent-color-rgb, 68, 179, 194), 0.4);
}

.doc-timeline__year {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
}

.doc-timeline__desc {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.doc-timeline__line {
    height: 2px;
    width: 200px;
    background: linear-gradient(90deg, var(--accent-color), rgba(255, 255, 255, 0.2));
    z-index: 1;
}

/* Big Numbers */
.doc-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.doc-number-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.doc-number-card--crimes {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.12), rgba(220, 53, 69, 0.04));
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.doc-number-card--victims {
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb, 68, 179, 194), 0.12), rgba(var(--accent-color-rgb, 68, 179, 194), 0.04));
    border: 1px solid rgba(var(--accent-color-rgb, 68, 179, 194), 0.2);
}

.doc-number-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.1rem;
}

.doc-number-card--crimes .doc-number-card__icon {
    background: rgba(220, 53, 69, 0.15);
    color: #f87171;
}

.doc-number-card--victims .doc-number-card__icon {
    background: rgba(var(--accent-color-rgb, 68, 179, 194), 0.15);
    color: var(--accent-color);
}

.doc-number-card__value {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.doc-number-card--crimes .doc-number-card__value {
    color: #f87171;
}

.doc-number-card--victims .doc-number-card__value {
    color: var(--accent-color);
}

.doc-number-card__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Services Strip */
.doc-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 700px;
    margin: 0 auto;
}

.doc-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.doc-service-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.doc-service-tag i {
    color: var(--accent-color);
    font-size: 0.65rem;
}

/* Documentation Responsive */
@media (max-width: 767px) {
    .documentation-section {
        padding: 3rem 0;
    }

    .doc-timeline {
        gap: 0;
    }

    .doc-timeline__line {
        width: 40px;
    }

    .doc-timeline__dot {
        width: 12px;
        height: 12px;
    }

    .doc-timeline__year {
        font-size: 0.7rem;
    }

    .doc-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .doc-number-card {
        padding: 1rem 0.75rem;
        border-radius: 14px;
    }

    .doc-number-card__icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .doc-number-card__value {
        font-size: 1.75rem;
    }

    .doc-number-card__label {
        font-size: 0.72rem;
    }

    .doc-services {
        gap: 0.35rem;
    }

    .doc-services span {
        font-size: 0.68rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ============================================
   1.10. BULGARIA BRANCH
   ============================================ */
.bulgaria-section {
    padding: 5rem 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #fcf7f0 50%, #ffffff 100%);
    position: relative;
    border-top: 1px solid rgba(15, 36, 70, 0.05);
}

.bulgaria-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.bulgaria-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-neutral-gray);
}

/* Journey Path */
.bulgaria-journey {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.bulgaria-journey__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    z-index: 2;
}

.bulgaria-journey__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.bulgaria-journey__icon--border {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.bulgaria-journey__icon--transit {
    background: rgba(var(--main-color-rgb), 0.1);
    color: var(--main-color);
    border: 2px solid rgba(var(--main-color-rgb), 0.15);
}

.bulgaria-journey__icon--safety {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.bulgaria-journey__label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-neutral-gray);
    white-space: nowrap;
}

.bulgaria-journey__path {
    height: 2px;
    width: 100px;
    margin-top: 24px;
    z-index: 1;
}

.bulgaria-journey__path--danger {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.4), rgba(var(--main-color-rgb), 0.3));
}

.bulgaria-journey__path--hope {
    background: linear-gradient(90deg, rgba(var(--main-color-rgb), 0.3), rgba(40, 167, 69, 0.4));
}

/* Video Frame */
.bulgaria-video {
    max-width: 840px;
    margin: 0 auto 3rem;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 36, 70, 0.08);
    box-shadow: 0 15px 45px rgba(15, 36, 70, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bulgaria-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 55px rgba(15, 36, 70, 0.12), 0 6px 18px rgba(0, 0, 0, 0.06);
}

.bulgaria-video__frame {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #0a1628;
}

.bulgaria-video__frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.bulgaria-video__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.bulgaria-video__caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid rgba(15, 36, 70, 0.06);
    color: #0f2446;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.bulgaria-video__caption i {
    color: #e50914;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bulgaria-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 1.4rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
    padding-left: 4px;
}

.bulgaria-video__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Service Cards */
.bulgaria-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.bulgaria-service-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(var(--main-color-rgb), 0.06);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bulgaria-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    opacity: 0;
    transition: all 0.3s ease;
}

.bulgaria-service-card:hover::before {
    opacity: 1;
    width: 80px;
}

.bulgaria-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(var(--main-color-rgb), 0.12);
    border-color: rgba(var(--main-color-rgb), 0.12);
}

.bulgaria-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--main-color-rgb), 0.2);
}

.bulgaria-service-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--main-color);
    margin: 0 0 0.5rem;
}

.bulgaria-service-card__desc {
    font-size: 0.85rem;
    color: var(--color-neutral-gray);
    line-height: 1.7;
}

/* Bulgaria Responsive */
@media (max-width: 767px) {
    .bulgaria-section {
        padding: 3rem 0 0;
    }

    .bulgaria-journey__path {
        width: 30px;
        margin-top: 19px;
    }

    .bulgaria-journey__icon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .bulgaria-journey__label {
        font-size: 0.7rem;
    }

    .bulgaria-services {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .bulgaria-service-card {
        padding: 0.85rem 0.5rem;
        border-radius: 14px;
    }

    .bulgaria-service-card__icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .bulgaria-service-card__name {
        font-size: 0.72rem;
    }

    .bulgaria-service-card__number {
        font-size: 1rem;
    }

    .bulgaria-video {
        margin-bottom: 2rem;
        border-radius: 14px;
    }

    .bulgaria-video__caption {
        font-size: 0.82rem;
        padding: 0.85rem 1rem;
        gap: 0.5rem;
    }

    .bulgaria-video__caption i {
        font-size: 1.1rem;
    }
}

/* ============================================
   2. HORIZONTAL TIMELINE SECTION
   ============================================ */
.timeline-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
    position: relative;
    border-top: 1px solid rgba(15, 36, 70, 0.05);
}

/* Track Wrapper */
.htl-track-wrapper {
    overflow: visible;
    padding: 3rem 0 2rem;
    scrollbar-width: none;
}

.htl-track-wrapper::-webkit-scrollbar {
    display: none;
}

.htl-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    min-width: max-content;
    padding: 0 2rem;
}

.htl-line {
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background: linear-gradient(90deg, rgba(var(--main-color-rgb), 0.1), rgba(var(--main-color-rgb), 0.25), rgba(var(--main-color-rgb), 0.1));
    transform: translateY(-50%);
    border-radius: 2px;
}

/* Year Dots */
.htl-dot {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(var(--main-color-rgb), 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    margin: 0 48px;
}

.htl-dot span {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-neutral-gray);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.htl-dot:hover {
    transform: scale(1.3);
}

.htl-dot:hover span {
    color: var(--main-color);
}

.htl-dot.active {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    box-shadow: 0 0 0 6px rgba(var(--main-color-rgb), 0.12), 0 4px 15px rgba(var(--main-color-rgb), 0.35);
}

.htl-dot.active span {
    color: var(--main-color);
    font-weight: 800;
    font-size: 1.05rem;
}

/* Year Display */
.htl-year-display {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(var(--main-color-rgb), 0.07);
    margin: 1.5rem 0 1rem;
    letter-spacing: 0.08em;
    line-height: 1;
}

/* Event Cards */
.htl-events {
    max-width: 960px;
    margin: 0 auto;
}

.htl-event-row {
    display: flex;
    gap: 1.5rem;
    animation: htlFadeIn 0.4s ease;
}

@keyframes htlFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.htl-event-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border-inline-start: 5px solid var(--main-color);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.htl-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.htl-event-card--main {
    border-inline-start-color: var(--main-color);
}

.htl-event-card--accent {
    border-inline-start-color: var(--accent-color);
}

.htl-event-card--warning {
    border-inline-start-color: #f59e0b;
}

.htl-event-card--danger {
    border-inline-start-color: #dc3545;
}

.htl-event-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(var(--main-color-rgb), 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--main-color);
}

.htl-event-card--accent .htl-event-card__icon {
    background: rgba(var(--accent-color-rgb), 0.06);
    color: var(--accent-color);
}

.htl-event-card--warning .htl-event-card__icon {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.htl-event-card--danger .htl-event-card__icon {
    background: rgba(220, 53, 69, 0.06);
    color: #dc3545;
}

.htl-event-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--main-color);
    margin: 0 0 0.6rem;
}

.htl-event-card p {
    font-size: 0.92rem;
    color: var(--color-neutral-gray);
    line-height: 1.75;
    margin: 0;
}

/* Timeline Responsive */
@media (max-width: 767px) {
    .timeline-section {
        padding: 3rem 0;
    }

    .htl-track-wrapper {
        overflow-x: auto;
        padding: 2.5rem 0 1.5rem;
    }

    .htl-track {
        justify-content: flex-start;
    }

    .htl-dot {
        width: 14px;
        height: 14px;
        margin: 0 14px;
    }

    .htl-dot.active {
        width: 20px;
        height: 20px;
    }

    .htl-dot span {
        font-size: 0.75rem;
        bottom: calc(100% + 8px);
    }

    .htl-dot.active span {
        font-size: 0.85rem;
    }

    .htl-year-display {
        font-size: 2.5rem;
    }

    .htl-event-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .htl-event-card {
        padding: 1.25rem;
    }

    .htl-event-card__title {
        font-size: 0.9rem;
    }

    .htl-event-card__desc {
        font-size: 0.78rem;
    }
}


/* ============================================
   3. COUNTER ANIMATION
   ============================================ */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   4. RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991px) {
    .history-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .history-intro-image img {
        height: 300px;
    }
}

@media (max-width: 767px) {

    .history-intro-section {
        padding: 3rem 0;
    }

    .history-intro-text h2 {
        font-size: 1.5rem;
    }

    .history-intro-image img {
        height: 220px;
    }
}

/* ============================================
   HISTORICAL GEOGRAPHIC REACH (2012 - 2022)
   ============================================ */

.historical-reach-section {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.historical-reach-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 36, 70, 0.88) 0%, rgba(29, 159, 218, 0.78) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}



.work-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.location-card__flag {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.location-info h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.location-info p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .work-locations-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .historical-reach-section {
        padding: 3.5rem 0;
    }

    .location-card {
        padding: 2rem 1.5rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
    }

    .location-card__flag {
        margin-bottom: 0.75rem;
        flex-shrink: 0;
    }

    .location-info {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .location-card {
        padding: 1.75rem 1.25rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .location-card__flag {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .location-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .location-info p {
        font-size: 0.88rem;
        line-height: 1.65;
    }
}