body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
    --main-color: #1b8354;
}

ul li {
    line-height: 33px;
}

.top-bar {
    background: #f3f4f6;
    padding: 6px 0;
}

.hero-section {
    background: linear-gradient(135deg, #0b6b3a, #0f8f4f);
    padding: 90px 0;
}

.mega-menu {
    border-radius: 0;
}

.mega-menu a {
    display: block;
    padding: 6px 0;
    text-decoration: none;
    color: #333;
}

.service-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
}

.service-card ul li {
    color: var(--primary-color);
}

/* .service-card i {
    font-size: 32px;
    color: #0b6b3a;
    margin-bottom: 15px;
} */

.stats-section {
    background: #0b6b3a;
    padding: 60px 0;
}

.news-card {
    border-radius: 12px;
    padding: 15px;
}

.img-placeholder {
    height: 160px;
    background: #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* =================== FOOTER =================== */
.footer {
    background-color: #074d31;
    padding-top: 60px;
    padding-bottom: 0;
    color: #ffffff;
}

.footer h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    line-height: 28px;
}

.footer li a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 107, 58, 0.85),
            rgba(15, 143, 79, 0.85));
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-slide p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Carousel arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

.nav-link {
    color: #000;
}

.our-services h3,
.zatca-announcements h3,
.zatca-latest-news h3,
.zatca-important-links h3 {
    font-size: 24px;
}

.service-card ul li a,
.service-card ul li a i {
    color: var(--main-color);
    font-size: 1rem;
    text-decoration: none;
}

.statistics {
    padding: 2.5rem 0;
    background-color: rgba(249, 250, 251, 1);
}

.statistics h2 {
    color: var(--Text-text-default, #161616);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: var(--global-spacing-3xl);
    margin-bottom: 10px;
}

.statistics .sub-head-section {
    color: var(--Text-text-default, #161616);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.statistics .row>div:last-child .stat-card {
    border-inline-end: none;
}

.statistics .stat-card {
    padding: 1rem;
}

.statistics .stat-card .icon-wrapper {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    background-color: #F3FCF6;
    color: var(--colors-base-black);
}

.statistics .stat-card .stat-value {
    color: var(--Text-text-primary-sa-flag, #14573A);
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.96px;
}

@media (max-width: 576px) {
    .statistics .stat-card .stat-value {
        font-size: 36px;
    }
}

.statistics .stat-card .stat-label {
    color: var(--Text-text-display, #1F2A37);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    margin: 0.5rem 0;
}

.statistics .stat-card .stat-sub-label {
    color: var(--Text-text-display, #1F2A37);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.grid-row-1 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 992px) {
    .grid-row-1 {
        grid-template-columns: repeat(min(2, 1), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-1 {
        grid-template-columns: repeat(min(1, 1), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-1 {
        grid-template-columns: 1fr;
    }
}

.grid-row-2 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 992px) {
    .grid-row-2 {
        grid-template-columns: repeat(min(2, 2), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-2 {
        grid-template-columns: repeat(min(1, 2), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-2 {
        grid-template-columns: 1fr;
    }
}

.grid-row-3 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .grid-row-3 {
        grid-template-columns: repeat(min(2, 3), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-3 {
        grid-template-columns: repeat(min(1, 3), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-3 {
        grid-template-columns: 1fr;
    }
}

.grid-row-4 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .grid-row-4 {
        grid-template-columns: repeat(min(2, 4), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-4 {
        grid-template-columns: repeat(min(1, 4), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-4 {
        grid-template-columns: 1fr;
    }
}

.grid-row-5 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 992px) {
    .grid-row-5 {
        grid-template-columns: repeat(min(2, 5), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-5 {
        grid-template-columns: repeat(min(1, 5), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-5 {
        grid-template-columns: 1fr;
    }
}

.grid-row-6 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 992px) {
    .grid-row-6 {
        grid-template-columns: repeat(min(2, 6), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-6 {
        grid-template-columns: repeat(min(1, 6), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-6 {
        grid-template-columns: 1fr;
    }
}

.grid-row-7 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(7, 1fr);
}

@media (max-width: 992px) {
    .grid-row-7 {
        grid-template-columns: repeat(min(2, 7), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-7 {
        grid-template-columns: repeat(min(1, 7), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-7 {
        grid-template-columns: 1fr;
    }
}

.grid-row-8 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(8, 1fr);
}

@media (max-width: 992px) {
    .grid-row-8 {
        grid-template-columns: repeat(min(2, 8), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-8 {
        grid-template-columns: repeat(min(1, 8), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-8 {
        grid-template-columns: 1fr;
    }
}

.grid-row-9 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(9, 1fr);
}

@media (max-width: 992px) {
    .grid-row-9 {
        grid-template-columns: repeat(min(2, 9), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-9 {
        grid-template-columns: repeat(min(1, 9), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-9 {
        grid-template-columns: 1fr;
    }
}

.grid-row-10 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(10, 1fr);
}

@media (max-width: 992px) {
    .grid-row-10 {
        grid-template-columns: repeat(min(2, 10), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-10 {
        grid-template-columns: repeat(min(1, 10), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-10 {
        grid-template-columns: 1fr;
    }
}

.grid-row-11 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(11, 1fr);
}

@media (max-width: 992px) {
    .grid-row-11 {
        grid-template-columns: repeat(min(2, 11), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-11 {
        grid-template-columns: repeat(min(1, 11), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-11 {
        grid-template-columns: 1fr;
    }
}

.grid-row-12 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(12, 1fr);
}

@media (max-width: 992px) {
    .grid-row-12 {
        grid-template-columns: repeat(min(2, 12), 1fr);
    }
}

@media (max-width: 768px) {
    .grid-row-12 {
        grid-template-columns: repeat(min(1, 12), 1fr);
    }
}

@media (max-width: 480px) {
    .grid-row-12 {
        grid-template-columns: 1fr;
    }
}

.grid-gap-0 {
    gap: 0rem;
}

.grid-gap-x-0 {
    column-gap: 0rem;
}

.grid-gap-y-0 {
    row-gap: 0rem;
}

.grid-gap-0-25 {
    gap: 0.25rem;
}

.grid-gap-x-0-25 {
    column-gap: 0.25rem;
}

.grid-gap-y-0-25 {
    row-gap: 0.25rem;
}

.grid-gap-0-5 {
    gap: 0.5rem;
}

.grid-gap-x-0-5 {
    column-gap: 0.5rem;
}

.grid-gap-y-0-5 {
    row-gap: 0.5rem;
}

.grid-gap-0-75 {
    gap: 0.75rem;
}

.grid-gap-x-0-75 {
    column-gap: 0.75rem;
}

.grid-gap-y-0-75 {
    row-gap: 0.75rem;
}

.grid-gap-1 {
    gap: 1rem;
}

.grid-gap-x-1 {
    column-gap: 1rem;
}

.grid-gap-y-1 {
    row-gap: 1rem;
}

.grid-gap-1-25 {
    gap: 1.25rem;
}

.grid-gap-x-1-25 {
    column-gap: 1.25rem;
}

.grid-gap-y-1-25 {
    row-gap: 1.25rem;
}

.grid-gap-1-5 {
    gap: 1.5rem;
}

.grid-gap-x-1-5 {
    column-gap: 1.5rem;
}

.grid-gap-y-1-5 {
    row-gap: 1.5rem;
}

.grid-gap-1-75 {
    gap: 1.75rem;
}

.grid-gap-x-1-75 {
    column-gap: 1.75rem;
}

.grid-gap-y-1-75 {
    row-gap: 1.75rem;
}

.grid-gap-2 {
    gap: 2rem;
}

.grid-gap-x-2 {
    column-gap: 2rem;
}

.grid-gap-y-2 {
    row-gap: 2rem;
}

.grid-gap-2-25 {
    gap: 2.25rem;
}

.grid-gap-x-2-25 {
    column-gap: 2.25rem;
}

.grid-gap-y-2-25 {
    row-gap: 2.25rem;
}

.grid-gap-2-5 {
    gap: 2.5rem;
}

.grid-gap-x-2-5 {
    column-gap: 2.5rem;
}

.grid-gap-y-2-5 {
    row-gap: 2.5rem;
}

.grid-gap-2-75 {
    gap: 2.75rem;
}

.grid-gap-x-2-75 {
    column-gap: 2.75rem;
}

.grid-gap-y-2-75 {
    row-gap: 2.75rem;
}

.grid-gap-3 {
    gap: 3rem;
}

.grid-gap-x-3 {
    column-gap: 3rem;
}

.grid-gap-y-3 {
    row-gap: 3rem;
}

.grid-gap-3-25 {
    gap: 3.25rem;
}

.grid-gap-x-3-25 {
    column-gap: 3.25rem;
}

.grid-gap-y-3-25 {
    row-gap: 3.25rem;
}

.grid-gap-3-5 {
    gap: 3.5rem;
}

.grid-gap-x-3-5 {
    column-gap: 3.5rem;
}

.grid-gap-y-3-5 {
    row-gap: 3.5rem;
}

.grid-gap-3-75 {
    gap: 3.75rem;
}

.grid-gap-x-3-75 {
    column-gap: 3.75rem;
}

.grid-gap-y-3-75 {
    row-gap: 3.75rem;
}

.grid-gap-4 {
    gap: 4rem;
}

.grid-gap-x-4 {
    column-gap: 4rem;
}

.grid-gap-y-4 {
    row-gap: 4rem;
}

.grid-gap-4-25 {
    gap: 4.25rem;
}

.grid-gap-x-4-25 {
    column-gap: 4.25rem;
}

.grid-gap-y-4-25 {
    row-gap: 4.25rem;
}

.grid-gap-4-5 {
    gap: 4.5rem;
}

.grid-gap-x-4-5 {
    column-gap: 4.5rem;
}

.grid-gap-y-4-5 {
    row-gap: 4.5rem;
}

.grid-gap-4-75 {
    gap: 4.75rem;
}

.grid-gap-x-4-75 {
    column-gap: 4.75rem;
}

.grid-gap-y-4-75 {
    row-gap: 4.75rem;
}

.grid-gap-5 {
    gap: 5rem;
}

.grid-gap-x-5 {
    column-gap: 5rem;
}

.grid-gap-y-5 {
    row-gap: 5rem;
}

.grid-gap-5-25 {
    gap: 5.25rem;
}

.grid-gap-x-5-25 {
    column-gap: 5.25rem;
}

.grid-gap-y-5-25 {
    row-gap: 5.25rem;
}

.grid-gap-5-5 {
    gap: 5.5rem;
}

.grid-gap-x-5-5 {
    column-gap: 5.5rem;
}

.grid-gap-y-5-5 {
    row-gap: 5.5rem;
}

.grid-gap-5-75 {
    gap: 5.75rem;
}

.grid-gap-x-5-75 {
    column-gap: 5.75rem;
}

.grid-gap-y-5-75 {
    row-gap: 5.75rem;
}

.grid-gap-6 {
    gap: 6rem;
}

.grid-gap-x-6 {
    column-gap: 6rem;
}

.grid-gap-y-6 {
    row-gap: 6rem;
}

.grid-gap-6-25 {
    gap: 6.25rem;
}

.grid-gap-x-6-25 {
    column-gap: 6.25rem;
}

.grid-gap-y-6-25 {
    row-gap: 6.25rem;
}

.grid-gap-6-5 {
    gap: 6.5rem;
}

.grid-gap-x-6-5 {
    column-gap: 6.5rem;
}

.grid-gap-y-6-5 {
    row-gap: 6.5rem;
}

.grid-gap-6-75 {
    gap: 6.75rem;
}

.grid-gap-x-6-75 {
    column-gap: 6.75rem;
}

.grid-gap-y-6-75 {
    row-gap: 6.75rem;
}

.grid-gap-7 {
    gap: 7rem;
}

.grid-gap-x-7 {
    column-gap: 7rem;
}

.grid-gap-y-7 {
    row-gap: 7rem;
}

.grid-gap-7-25 {
    gap: 7.25rem;
}

.grid-gap-x-7-25 {
    column-gap: 7.25rem;
}

.grid-gap-y-7-25 {
    row-gap: 7.25rem;
}

.grid-gap-7-5 {
    gap: 7.5rem;
}

.grid-gap-x-7-5 {
    column-gap: 7.5rem;
}

.grid-gap-y-7-5 {
    row-gap: 7.5rem;
}

.grid-gap-7-75 {
    gap: 7.75rem;
}

.grid-gap-x-7-75 {
    column-gap: 7.75rem;
}

.grid-gap-y-7-75 {
    row-gap: 7.75rem;
}

.grid-gap-8 {
    gap: 8rem;
}

.grid-gap-x-8 {
    column-gap: 8rem;
}

.grid-gap-y-8 {
    row-gap: 8rem;
}

.grid-gap-8-25 {
    gap: 8.25rem;
}

.grid-gap-x-8-25 {
    column-gap: 8.25rem;
}

.grid-gap-y-8-25 {
    row-gap: 8.25rem;
}

.grid-gap-8-5 {
    gap: 8.5rem;
}

.grid-gap-x-8-5 {
    column-gap: 8.5rem;
}

.grid-gap-y-8-5 {
    row-gap: 8.5rem;
}

.grid-gap-8-75 {
    gap: 8.75rem;
}

.grid-gap-x-8-75 {
    column-gap: 8.75rem;
}

.grid-gap-y-8-75 {
    row-gap: 8.75rem;
}

.grid-gap-9 {
    gap: 9rem;
}

.grid-gap-x-9 {
    column-gap: 9rem;
}

.grid-gap-y-9 {
    row-gap: 9rem;
}

.grid-gap-9-25 {
    gap: 9.25rem;
}

.grid-gap-x-9-25 {
    column-gap: 9.25rem;
}

.grid-gap-y-9-25 {
    row-gap: 9.25rem;
}

.grid-gap-9-5 {
    gap: 9.5rem;
}

.grid-gap-x-9-5 {
    column-gap: 9.5rem;
}

.grid-gap-y-9-5 {
    row-gap: 9.5rem;
}

.grid-gap-9-75 {
    gap: 9.75rem;
}

.grid-gap-x-9-75 {
    column-gap: 9.75rem;
}

.grid-gap-y-9-75 {
    row-gap: 9.75rem;
}

.grid-gap-10 {
    gap: 10rem;
}

.grid-gap-x-10 {
    column-gap: 10rem;
}

.grid-gap-y-10 {
    row-gap: 10rem;
}

/* ===============================
   ZATCA CALENDAR – EXACT STYLE
================================ */

.zatca-calendar-exact {
    background: linear-gradient(180deg, #0b0f14, #0f141a);
    padding: 80px 0 110px;
    position: relative;
    color: #ffffff;
}

.calendar-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
}

.calendar-content-wrapper {
    max-width: 760px;
}

.calendar-date-text {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}

.calendar-event-title {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 14px;
}

.calendar-location {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
}

.calendar-link {
    color: #000;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #fff;
    display: inline-block;
    border-radius: 5px;
}


/* Pagination dots – bottom left */
.calendar-pagination {
    position: absolute;
    bottom: -60px;
    left: 0;
    margin: 0;
    justify-content: flex-start;
}

.calendar-pagination button {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    padding: 0px !important;
    opacity: 1 !important;
}

.calendar-pagination .active {
    background-color: var(--main-color);
}

/* Arrows – bottom right */
.calendar-arrows {
    position: absolute;
    bottom: -70px;
    right: 0;
    display: flex;
    gap: 12px;
}

.calendar-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--main-color);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .calendar-arrow:hover {
    background: #26303b;
} */

/* Ensure carousel allows clicks */
#zatcaCalendarCarousel {
    position: relative;
}

/* Make slides not block clicks */
#zatcaCalendarCarousel .carousel-inner {
    pointer-events: none;
}

/* Re-enable clicks only for controls */
.calendar-arrows,
.calendar-arrows button,
.calendar-pagination,
.calendar-pagination button {
    pointer-events: auto;
    z-index: 10;
}

.btn-neutral-100 {
    background-color: #F3F4F6;
}

.zatca-announcements h6 {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.5;
}

/* ===============================
   LATEST NEWS (STATIC)
================================ */

.zatca-latest-news {
    background: #ffffff;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
}

.view-all-link:hover {
    text-decoration: underline;
}

.news-card {
    /* background: #f9fafb; */
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    display: block;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border: 1px solid #e5e7ea;
}

.news-card:hover {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.news-img {
    /* background: #e5e7ea; */
    display: block;
    margin-bottom: 20px;
}

/* .news-body {
    padding: 16px;
} */

.news-meta {
    font-size: 1rem;
    color: #6c757d;
    display: block;
    margin-bottom: 8px;
}

.news-body h6 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.news-badge {
    border-radius: var(--radius-sm, 4px);
    border: 1px solid var(--Border-border-neutral-secondary, #e5e7eb);
    background: var(--Tag-tag-background-neutral-light, #f9fafb);
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: var(--Tag-tag-text-neutral, #1f2a37);
    text-align: center;
    height: 1.5rem;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.125rem;
    display: flex !important;
    align-items: center;
    justify-content: start;
    justify-self: start;
}

/* ===============================
   IMPORTANT LINKS
================================ */

.zatca-important-links {
    /* background: #f6f7f8; */
    padding: 50px 0 80px;
}

.important-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    height: 100%;
    text-decoration: none;
    color: #000;
    display: flex;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.important-card:hover {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.important-card i {
    font-size: 28px;
    color: #0b6b3a;
    margin-bottom: 14px;
}

.important-card h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.important-card p {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 0;
}

/* Pagination bottom-left */
.important-pagination {
    position: absolute;
    bottom: -55px;
    left: 0;
    margin: 0;
    justify-content: flex-start;
}

.important-pagination button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.25);
    border: none;
}

.important-pagination .active {
    background-color: #0b6b3a;
}

/* Arrows bottom-right */
.important-arrows {
    position: absolute;
    bottom: -65px;
    right: 0;
    display: flex;
    gap: 12px;
}

.important-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.important-arrow:hover {
    background: #f1f3f5;
}

.statistics {
    padding: 2.5rem 0;
    background-color: var(--colors-neutral-50);
}

.statistics h2 {
    color: var(--Text-text-default, #161616);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: var(--global-spacing-3xl);
}

.statistics .sub-head-section {
    color: var(--Text-text-default, #161616);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.statistics .row>div:last-child .stat-card {
    border-inline-end: none;
}

.statistics .stat-card {
    padding: 1rem;
}

.statistics .stat-card .icon-wrapper {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    background-color: #f3fcf6;
    color: var(--colors-base-black);
}

.statistics .stat-card .stat-value {
    color: var(--Text-text-primary-sa-flag, #14573a);
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.96px;
}

@media (max-width: 576px) {
    .statistics .stat-card .stat-value {
        font-size: 36px;
    }
}

.statistics .stat-card .stat-label {
    color: var(--Text-text-display, #1f2a37);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    margin: 0.5rem 0;
}

.statistics .stat-card .stat-sub-label {
    color: var(--Text-text-display, #1f2a37);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.card .card-header {
    flex-shrink: 0;
    border: 0;
    background-color: transparent;
    padding: 0;
    padding-bottom: var(--global-spacing-3xl);
}

.card .card-header .icon-container img {
    width: 48px;
    height: 48px;
}

.card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 0;
    padding-bottom: var(--global-spacing-3xl);
}

.card .card-body .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 28px;
}

.card .card-body .card-subtitle {
    color: #6c737f;
    font-size: .875rem;
    line-height: 1.25rem;
}

.card .card-body .text-muted {
    color: #4d5761 !important;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.card .card-footer {
    border: 0;
    background-color: transparent;
    padding: 0;
}

.img-wrap {
    background-color: #f9fafb;
    border-radius: 16px;
    position: relative;
    width: 94px !important;
    height: 126px;
    margin-left: 11px;
    flex: none;
}


.zatca-important-links .carousel-indicators {
    position: absolute;
    bottom: -60px;
    left: 0;
    margin: 0;
    justify-content: flex-start;
}

.zatca-important-links .carousel-indicators button {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    background-color: #e5e5e5;
    border: none;
    padding: 0px !important;
    opacity: 1 !important;
}

.zatca-important-links .carousel-indicators .active {
    background-color: var(--main-color);
}

/* Arrows – bottom right */
.zatca-important-links .important-arrows {
    position: absolute;
    bottom: -70px;
    right: 0;
    display: flex;
    gap: 12px;
}

.zatca-important-links .important-arrows button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--main-color);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .calendar-arrow:hover {
    background: #26303b;
} */

/* Ensure carousel allows clicks */
#importantLinksCarousel {
    position: relative;
}

/* Make slides not block clicks */
#importantLinksCarousel .carousel-inner {
    pointer-events: none;
}

/* Re-enable clicks only for controls */
.zatca-important-links .important-arrows,
.zatca-important-links .important-arrows button,
.zatca-important-links .important-pagination,
.zatca-important-links .important-pagination button {
    pointer-events: auto;
    z-index: 10;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

/* =================== OUR PARTNERS SECTION =================== */
.zatca-partners {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 90px !important;
}

.zatca-partners .partner-logo-wrap {
    background: #ffffff;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    padding: 25px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* .zatca-partners .partner-logo-wrap:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--main-color);
    transform: translateY(-5px);
} */

.zatca-partners .partner-logo {
    max-width: 100%;
    max-height: 60px;
    /* filter: grayscale(100%);
    opacity: 0.5; */
    transition: all 0.3s ease;
}

/* .zatca-partners .partner-logo-wrap:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
} */

.zatca-partners .partners-arrows {
    position: absolute;
    top: 50%;
    left: -50px;
    right: -50px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

/* Adjust section padding to accommodate outer arrows on medium screens */
@media (min-width: 1200px) {
    .partners-slider-container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .zatca-partners .partners-arrows {
        left: 0;
        right: 0;
    }
}

/* On mobile, keep arrows below for better layout */
@media (max-width: 991px) {
    .zatca-partners .partners-arrows {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        margin-top: 30px;
        justify-content: center;
        gap: 20px;
        pointer-events: auto;
    }
}

.zatca-partners .partners-arrow {
    width: 44px;
    height: 44px;
    /* border-radius: 50%; */
    background: #f1f1f1;
    border: none;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

/* .zatca-partners .partners-arrow:hover {
    background: #e5e5e5;
    color: var(--main-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

@media (max-width: 991px) {
    .zatca-partners .partner-logo-wrap {
        height: 90px;
        padding: 15px;
    }
}

/* =================== NEW FOOTER COMPONENTS =================== */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0%;
    /* background: rgba(255, 255, 255, 0.1); */
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2)
}

.footer-social-icons a:hover {
    /* background: #ffffff; */
    color: #14573a;
}

.accessibility-tools {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.accessibility-tools li button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accessibility-tools li button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-download-btns a img {
    height: 40px;
    width: auto;
}

.footer-bottom-bar {
    padding-bottom: 50px;
}

.copyright-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}

.copyright-links li a {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
    font-size: 0.85rem;
}

.copyright-text {
    color: rgba(255, 255, 255, 1);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-branding img {
    height: 40px;
}

.last-update-text {
    color: rgba(255, 255, 255, 1);
    font-size: 0.75rem;
    text-align: left;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .footer-bottom-bar .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .copyright-links {
        justify-content: center;
    }

    .footer-branding {
        justify-content: center;
    }
}

.live-broadcast-bar {
    background: #f3fcf6;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-broadcast-bar__title {
    flex-grow: 1;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.75rem;
}

.btn-theme {
    background-color: var(--main-color);
    color: #fff;
}

.img-white {
    filter: brightness(0) invert(1);
}

/* =================== LOGIN PAGE SPECIFIC =================== */
.login-content-section {
    padding-top: 30px;
    background: #ffffff;
}

.login-header-wrapper {
    margin-bottom: 30px;
}

.login-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-title-row h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.login-header-actions {
    display: flex;
    gap: 15px;
}

.login-header-actions .action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    color: rgb(0, 0, 0, .5);
    transition: all 0.3s ease;
    background: transparent;
}

.login-header-actions .action-btn:hover {
    background: #f8f8f8;
    color: var(--main-color);
}

.login-hero-container {
    position: relative;
    padding: 80px 0;
    background-image: url(../images/login-bg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.login-main-card {
    background: #ffffff;
    border-radius: 20px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    margin: -200px auto 30px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.login-tabs-nav {
    display: flex;
    background: #f4f4f4;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    overflow: hidden;
}

.login-tab-item {
    flex: 1;
    text-align: center;
    padding: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    padding: 10px 15px;
}

.login-tab-item.active {
    background: #0D121C;
    color: #ffffff;
}

.login-tab-item:not(.active):hover {
    background: #eeeeee;
}

.login-card-body {
    padding: 40px 80px;
}

.service-login-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: inherit;
}

.service-login-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #074d31;
    transform: translateY(-5px);
}

.service-card-icon {
    /* width: 50px;
    height: 50px;
    background: #e9f5ee; */
    border-radius: 12px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-bottom: 20px;
}

.service-card-icon img {
    width: 24px;
}

.service-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.service-card-footer {
    display: flex;
    justify-content: flex-end;
}

.card-arrow-btn {
    width: 40px;
    height: 40px;
    background: #f4f4f4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-login-card:hover .card-arrow-btn {
    background: #074d31;
    color: #ffffff;
}

.feedback-suggestion-box {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 15px;
    margin-top: 40px;
    margin-bottom: 60px;
    /* display: flex; */
    gap: 30px;
    align-items: flex-start;
}

.feedback-icon {
    width: 56px;
    height: 56px;
    background: #f4fcf8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 
.feedback-icon img {
    width: 28px;
} */

.feedback-text h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feedback-text p {
    color: #666;
    margin-bottom: 25px;
}

.feedback-utility-row {
    background: #f8fcf9;
    padding: 30px 0;
    border-top: 1px solid #1B8354;
}

.visitor-stats-row {
    font-size: 0.95rem;
    color: #444;
}

.btn-yes,
.btn-no {
    padding: 8px 30px;
    min-width: 80px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-yes {
    background-color: #1B8354;
    color: #fff;
    border: none;
}

.btn-no {
    border: 1px solid #1B8354;
    background: transparent;
    color: #1B8354;
}

@media (max-width: 768px) {
    .login-main-card {
        margin-top: -50px;
        border-radius: 0;
        padding: 20px
    }

    .feedback-suggestion-box {
        flex-direction: column;
        padding: 20px;
    }

    .login-card-body {
        padding: 20px 20px;
    }

    .login-tabs-nav {
        margin-top: 20px;
    }
}


.breadcrumb .breadcrumb-item a {
    color: #074d31;
    font-size: 0.875rem;
}

.login-tab-content {
    display: none;
}

.login-tab-content.active {
    display: block;
}

/* =================== LOGIN STYLES =================== */
:root {
    --primary-bg: #002447;
    --accent-color: #2bb0a6;
    --text-muted: #666;
    --input-border: #ccdadd;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background: #0e2445
}

/* Left Panel */
.login-left {
    position: relative;
    background: var(--primary-bg);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../images/bg-master.png");
    background-size: cover;
    background-position: right;
    padding: 40px;
}

.login-left .swiper {
    width: 100%;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    text-align: center;
    padding-bottom: 50px;
}

.laptop-mockup {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
    position: relative;
}

.laptop-mockup img {
    width: 100%;
    height: auto;
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.slide-desc {
    font-size: 1.1rem;
    max-width: 400px;
    line-height: 1.4;
    opacity: 0.9;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color) !important;
    transform: scale(1.2);
}

/* Right Panel */
.login-right {
    background: #fff;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.zatca-logo {
    height: 60px;
}

.lang-link {
    text-decoration: none;
    color: var(--primary-bg);
    font-size: 20px;
}

.login-title {
    font-size: 2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.form-label-hidden {
    display: none;
}

.input-group-custom {
    position: relative;
    margin-bottom: 20px;
}

.input-group-custom .form-control {
    height: 56px;
    border-radius: 12px;
    border: 1px solid var(--input-border);
    padding-left: 55px;
    font-size: 1rem;
}

.input-group-custom .input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
    z-index: 10;
}

.forgot-link {
    color: #038eb5;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.login-btn {
    height: 50px;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-radius: 14px;
    border: solid 0.5px #65ccc7;
    background-color: #65ccc7;
    width: 180px;
}

.login-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.nafath-btn {
    height: 56px;
    border: 1px solid var(--input-border);
    background: #fff;
    border-radius: 12px;
    padding: 0 20px;
    text-decoration: none;
    color: #038eb5;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 15px 20px;
    display: inline-block;
}

.nafath-btn img {
    width: 30px;
}

.switch-screen-btn {
    background-color: #008fcc;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 5px;
}

.footer-links p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 5px;
}

.footer-links p a {
    color: #038eb5;
    text-decoration: none;
    font-weight: 500;
}

.secondary-links a {
    display: block;
    color: #038eb5;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0px;
}

@media (max-width: 991px) {
    .login-right {
        padding: 40px 30px;
        border-radius: 15px;
    }
}
