/* 🌅 Inner Banner Section */

.inner-banner-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: -80px;
}


/* 🏞️ Background Image Container */

.inner-baner-container {
    position: relative;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 4px solid #00a651;
}


/* Remove overlay for crystal-clear image */

.inner-baner-container::before {
    content: none;
}


/* 🎯 Banner Text Container */

.inner-banner-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}


/* ✨ Main Title Styling */

.inner-title {
    font-size: 3.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    background: linear-gradient(90deg, #ffffff, #d1fff0, #a8ffe0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    font-family: "Poppins", "Montserrat", sans-serif;
    position: relative;
    transition: all 0.4s ease;
}


/* Subtle glowing animation on hover */

.inner-title:hover {
    transform: scale(1.03);
    text-shadow: 0 0 25px rgba(0, 255, 170, 0.6);
}


/* 🌈 Stylish underline effect */

.inner-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, #00a651, #00e6cc, #0099cc);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 166, 81, 0.5);
    animation: lineGlow 2.5s infinite alternate;
}


/* ✨ Animation Keyframes */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGlow {
    from {
        box-shadow: 0 0 8px rgba(0, 166, 81, 0.4);
    }
    to {
        box-shadow: 0 0 18px rgba(0, 230, 204, 0.8);
    }
}


/* 📱 Responsive Adjustments */

@media (max-width: 992px) {
    .inner-baner-container {
        height: 340px;
    }
    .inner-title {
        font-size: 2.4rem;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 600px) {
    .inner-baner-container {
        height: 260px;
    }
    .inner-title {
        font-size: 1.9rem;
        letter-spacing: 1px;
    }
    .inner-title::after {
        width: 70px;
        height: 3px;
    }
}


/* =========================================================
   SAFA PUBLIC SCHOOL
   SCHOOL INFORMATION SECTION
   ========================================================= */


/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================================
   ROOT
========================================================= */

:root {
    --safa-green: #21834f;
    --safa-dark-green: #176b43;
    --safa-light-green: #edf8f1;
    --safa-border: #dfeee5;
    --safa-text: #3f4f47;
    --safa-muted: #75837b;
    --safa-white: #ffffff;
}


/* =========================================================
   RESET
========================================================= */

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.safa-school-section {
    margin-top: 100px;
    padding: 60px 0;
    background: linear-gradient( 180deg, #f8fcf9 0%, #ffffff 100%);
}


/* =========================================================
   CONTAINER
========================================================= */

.safa-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   MAIN TWO COLUMN LAYOUT
========================================================= */

.safa-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
    gap: 28px;
}


/* =========================================================
   LEFT COLUMN
========================================================= */

.safa-left-column {
    min-width: 0;
}


/* =========================================================
   LEFT INFORMATION CARD
========================================================= */

.safa-information-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--safa-border);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(25, 100, 55, 0.07);
}


/* =========================================================
   INFORMATION HEADER
========================================================= */

.safa-information-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    background: linear-gradient( 135deg, #176b43, #238b57);
    color: #ffffff;
}

.safa-information-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 40px;
}

.safa-information-header span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.safa-information-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================================
   INFORMATION LIST
========================================================= */

.safa-information-list {
    width: 100%;
}


/* =========================================================
   INFORMATION ROW
========================================================= */

.safa-information-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.85fr) minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border-bottom: 1px solid #edf3ef;
    transition: background-color 0.25s ease;
}

.safa-information-row:last-child {
    border-bottom: none;
}

.safa-information-row:hover {
    background: #f5fbf7;
}


/* =========================================================
   INFORMATION LABEL
========================================================= */

.safa-information-label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.safa-information-label span {
    color: #66756d;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}


/* =========================================================
   ROW ICON
========================================================= */

.safa-row-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf8f1;
    color: var(--safa-green);
    font-size: 15px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.safa-information-row:hover .safa-row-icon {
    background: var(--safa-green);
    color: #ffffff;
    transform: scale(1.05);
}


/* =========================================================
   INFORMATION VALUE
========================================================= */

.safa-information-value {
    color: #34453d;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.safa-information-value a {
    color: var(--safa-green);
    transition: color 0.2s ease;
}

.safa-information-value a:hover {
    color: var(--safa-dark-green);
}


/* =========================================================
   RIGHT COLUMN
========================================================= */

.safa-right-column {
    min-width: 0;
}


/* =========================================================
   FOUR CARDS GRID
========================================================= */

.safa-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   STAT CARD
========================================================= */

.safa-stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 125px;
    padding: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--safa-border);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(25, 100, 55, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


/* Decorative circle */

.safa-stat-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    right: -40px;
    bottom: -45px;
    border-radius: 50%;
    background: #edf8f1;
    transition: transform 0.4s ease;
}

.safa-stat-card:hover {
    transform: translateY(-5px);
    border-color: #c8e5d3;
    box-shadow: 0 15px 35px rgba(25, 100, 55, 0.11);
}

.safa-stat-card:hover::after {
    transform: scale(1.3);
}


/* =========================================================
   STAT ICON
========================================================= */

.safa-stat-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #eaf7ef;
    color: var(--safa-green);
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.safa-stat-card:hover .safa-stat-icon {
    background: var(--safa-green);
    color: #ffffff;
    transform: scale(1.05);
}


/* =========================================================
   STAT CONTENT
========================================================= */

.safa-stat-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.safa-stat-content span {
    display: block;
    margin-bottom: 5px;
    color: #7b8982;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.safa-stat-content strong {
    display: block;
    color: #26372f;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: anywhere;
}


/* =========================================================
   IMPORTANT DOCUMENTS
========================================================= */

.safa-important-documents {
    width: 100%;
    margin-top: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--safa-border);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(25, 100, 55, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.safa-important-documents:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 38px rgba(25, 100, 55, 0.10);
}


/* =========================================================
   DOCUMENT HEADER
========================================================= */

.safa-doc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: linear-gradient( 135deg, #176b43 0%, #21834f 50%, #27945b 100%);
    color: #ffffff;
}

.safa-doc-header-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 30px;
    transition: transform 0.3s ease;
}

.safa-important-documents:hover .safa-doc-header-icon {
    transform: scale(1.05) rotate(-4deg);
}

.safa-doc-header-content {
    min-width: 0;
}

.safa-doc-header-content span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.safa-doc-header-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================================
   DOCUMENT LIST
========================================================= */

.safa-doc-list {
    width: 100%;
}


/* =========================================================
   DOCUMENT ITEM
========================================================= */

.safa-doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 17px;
    border-bottom: 1px solid #edf3ef;
    transition: background-color 0.25s ease, padding-left 0.25s ease;
}

.safa-doc-item:last-child {
    border-bottom: none;
}

.safa-doc-item:hover {
    background: #f5fbf7;
    padding-left: 21px;
}


/* =========================================================
   DOCUMENT NAME
========================================================= */

.safa-doc-name {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    flex: 1;
}

.safa-doc-number {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf8f1;
    color: var(--safa-green);
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.safa-doc-item:hover .safa-doc-number {
    background: var(--safa-green);
    color: #ffffff;
    transform: scale(1.05);
}

.safa-doc-name>span {
    display: block;
    color: #44544c;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.safa-doc-item:hover .safa-doc-name>span {
    color: var(--safa-dark-green);
}


/* =========================================================
   DOCUMENT VIEW BUTTON
========================================================= */

.safa-doc-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    min-width: 68px;
    padding: 8px 11px;
    border: 1px solid #cfe6d8;
    border-radius: 8px;
    background: #f0faf4;
    color: #1c7748 !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.safa-doc-view:hover {
    background: var(--safa-green);
    border-color: var(--safa-green);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(33, 131, 79, 0.20);
}

.safa-doc-view i {
    font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
    .safa-school-section {
        padding: 45px 0;
    }
    .safa-main-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 20px;
    }
    .safa-information-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }
    .safa-information-value {
        padding-left: 39px;
    }
    .safa-stat-card {
        min-height: 115px;
        padding: 16px;
    }
    .safa-stat-content strong {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .safa-school-section {
        padding: 30px 0;
    }
    .safa-container {
        padding: 0 15px;
    }
    /* One column */
    .safa-main-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .safa-left-column,
    .safa-right-column {
        width: 100%;
    }
    /* Cards */
    .safa-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .safa-stat-card {
        min-height: 105px;
        padding: 14px;
        gap: 10px;
        border-radius: 14px;
    }
    .safa-stat-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 10px;
        font-size: 15px;
    }
    .safa-stat-content span {
        font-size: 8px;
    }
    .safa-stat-content strong {
        font-size: 13px;
    }
    /* Information */
    .safa-information-card {
        border-radius: 16px;
    }
    .safa-information-header {
        padding: 18px;
    }
    .safa-information-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 11px;
        font-size: 16px;
    }
    .safa-information-header h2 {
        font-size: 18px;
    }
    .safa-information-row {
        grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1fr);
        gap: 10px;
        padding: 12px 14px;
    }
    .safa-information-value {
        padding-left: 0;
    }
    .safa-information-label {
        align-items: flex-start;
    }
    .safa-information-label span {
        font-size: 10px;
    }
    .safa-row-icon {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
        border-radius: 7px;
        font-size: 9px;
    }
    .safa-information-value {
        font-size: 10px;
    }
    /* Documents */
    .safa-important-documents {
        margin-top: 18px;
        border-radius: 15px;
    }
    .safa-doc-header {
        padding: 17px;
        gap: 12px;
    }
    .safa-doc-header-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 10px;
        font-size: 16px;
    }
    .safa-doc-header-content h3 {
        font-size: 17px;
    }
    .safa-doc-header-content span {
        font-size: 8px;
    }
    .safa-doc-item {
        align-items: flex-start;
        gap: 9px;
        padding: 13px;
    }
    .safa-doc-item:hover {
        padding-left: 15px;
    }
    .safa-doc-name {
        align-items: flex-start;
        gap: 8px;
    }
    .safa-doc-number {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        border-radius: 7px;
    }
    .safa-doc-name>span {
        font-size: 10px;
        line-height: 1.5;
    }
    .safa-doc-view {
        min-width: 55px;
        padding: 7px 8px;
        font-size: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .safa-container {
        padding: 0 10px;
    }
    .safa-cards-grid {
        gap: 9px;
    }
    .safa-stat-card {
        min-height: 95px;
        padding: 11px;
        gap: 8px;
    }
    .safa-stat-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
        font-size: 13px;
    }
    .safa-stat-content span {
        font-size: 7px;
        letter-spacing: 0.6px;
    }
    .safa-stat-content strong {
        font-size: 11px;
    }
    .safa-information-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .safa-information-value {
        padding-left: 35px;
    }
    .safa-doc-header {
        padding: 15px;
    }
    .safa-doc-header-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 14px;
    }
    .safa-doc-header-content h3 {
        font-size: 16px;
    }
    .safa-doc-item {
        padding: 11px;
    }
    .safa-doc-name>span {
        font-size: 9px;
    }
    .safa-doc-number {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
        font-size: 8px;
    }
    .safa-doc-view {
        min-width: 50px;
        padding: 7px;
        font-size: 8px;
    }
}


/* =========================================================
   SAFA INFORMATION SECTION
========================================================= */

.safa-information-section {
    width: 100%;
    padding: 70px 20px;
    background: #f7fbf8;
    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.safa-information-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   IMAGE
========================================================= */

.safa-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.safa-school-image {
    display: block;
    width: 100%;
    max-width: 1050px;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(23, 107, 67, 0.12);
    transition: 0.4s ease;
}

.safa-school-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(23, 107, 67, 0.18);
}


/* =========================================================
   HIDE RADIO BUTTONS
========================================================= */

.safa-tabs>input[type="radio"] {
    display: none;
}


/* =========================================================
   TAB NAVIGATION
========================================================= */

.safa-tab-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 100%;
    padding: 7px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #dceee3;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(31, 100, 60, 0.07);
}


/* =========================================================
   TAB BUTTON
========================================================= */

.safa-tab-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 10px;
    color: #53685c;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.safa-tab-button:hover {
    color: #176b43;
    background: #eff9f3;
}


/* =========================================================
   ACTIVE TAB
========================================================= */

#safa-tab-overview:checked~.safa-tab-navigation label[for="safa-tab-overview"],
#safa-tab-documents:checked~.safa-tab-navigation label[for="safa-tab-documents"] {
    color: #ffffff;
    background: linear-gradient( 135deg, #176b43, #238b57);
    box-shadow: 0 6px 18px rgba(35, 139, 87, 0.20);
}


/* =========================================================
   TAB CONTENT
========================================================= */

.safa-tab-content {
    display: none;
    width: 100%;
    margin-top: 25px;
}


/* Show Overview */

#safa-tab-overview:checked~.safa-overview-content {
    display: block;
    animation: safaFadeIn 0.4s ease;
}


/* Show Documents */

#safa-tab-documents:checked~.safa-documents-content {
    display: block;
    animation: safaFadeIn 0.4s ease;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.safa-content-card {
    width: 100%;
    padding: 35px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #dceee3;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(31, 100, 60, 0.08);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.safa-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.safa-heading-line {
    width: 5px;
    min-width: 5px;
    height: 58px;
    margin-top: 2px;
    border-radius: 10px;
    background: linear-gradient( 180deg, #176b43, #69b98a);
}

.safa-small-title {
    display: block;
    margin-bottom: 5px;
    color: #238b57;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.safa-section-heading h2 {
    margin: 0;
    color: #183c2a;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.safa-description {
    margin: 0 0 35px;
    color: #5b6c63;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   RESULT SECTION
========================================================= */

.safa-result-section {
    margin-bottom: 35px;
}

.safa-result-section:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESULT TITLE
========================================================= */

.safa-result-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.safa-result-title h3 {
    margin: 0;
    color: #214936;
    font-size: 18px;
    font-weight: 700;
}

.safa-result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: #1f7c4c;
    background: #e9f7ef;
    border-radius: 10px;
    font-size: 14px;
}


/* =========================================================
   RESULT TABLE WRAPPER
========================================================= */

.safa-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dceee3;
    border-radius: 13px;
    -webkit-overflow-scrolling: touch;
}


/* =========================================================
   RESULT TABLE
========================================================= */

.safa-result-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #ffffff;
}


/* =========================================================
   RESULT TABLE HEADER
========================================================= */

.safa-result-table thead th {
    padding: 15px 18px;
    color: #176b43;
    background: #eff9f3;
    border-bottom: 1px solid #dceee3;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
}


/* =========================================================
   RESULT TABLE BODY
========================================================= */

.safa-result-table tbody td {
    padding: 15px 18px;
    color: #53645b;
    font-size: 13px;
    border-bottom: 1px solid #edf3ef;
}

.safa-result-table tbody tr:last-child td {
    border-bottom: none;
}

.safa-result-table tbody tr {
    transition: 0.25s ease;
}

.safa-result-table tbody tr:hover {
    background: #f5fbf7;
}


/* =========================================================
   SUCCESS BADGE
========================================================= */

.safa-success-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    padding: 5px 9px;
    color: #1b7748;
    background: #e8f7ed;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   DOCUMENT TABLE
========================================================= */

.safa-documents-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dceee3;
    border-radius: 13px;
    -webkit-overflow-scrolling: touch;
}

.safa-documents-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    background: #ffffff;
}


/* =========================================================
   DOCUMENT HEADER
========================================================= */

.safa-documents-table thead th {
    padding: 15px 20px;
    color: #176b43;
    background: #eff9f3;
    border-bottom: 1px solid #dceee3;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    text-align: left;
}

.safa-documents-table thead th:last-child {
    width: 110px;
    text-align: center;
}


/* =========================================================
   DOCUMENT BODY
========================================================= */

.safa-documents-table tbody td {
    padding: 16px 20px;
    color: #4d6056;
    font-size: 13px;
    line-height: 1.6;
    border-bottom: 1px solid #edf3ef;
    vertical-align: middle;
}

.safa-documents-table tbody tr:last-child td {
    border-bottom: none;
}

.safa-documents-table tbody tr {
    transition: 0.25s ease;
}

.safa-documents-table tbody tr:hover {
    background: #f5fbf7;
}


/* =========================================================
   VIEW BUTTON
========================================================= */

.safa-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 70px;
    padding: 8px 13px;
    color: #1d7c4b !important;
    background: #e8f7ed;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.25s ease;
}

.safa-view-button:hover {
    color: #ffffff !important;
    background: #238b57;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(35, 139, 87, 0.20);
}


/* =========================================================
   SCROLLBAR
========================================================= */

.safa-table-wrapper::-webkit-scrollbar,
.safa-documents-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.safa-table-wrapper::-webkit-scrollbar-track,
.safa-documents-table-wrapper::-webkit-scrollbar-track {
    background: #edf5ef;
}

.safa-table-wrapper::-webkit-scrollbar-thumb,
.safa-documents-table-wrapper::-webkit-scrollbar-thumb {
    background: #8bc9a5;
    border-radius: 10px;
}

.safa-table-wrapper::-webkit-scrollbar-thumb:hover,
.safa-documents-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #238b57;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes safaFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {
    .safa-information-section {
        padding: 45px 15px;
    }
    .safa-content-card {
        padding: 25px 20px;
        border-radius: 16px;
    }
    .safa-section-heading h2 {
        font-size: 20px;
    }
    .safa-description {
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {
    .safa-information-section {
        padding: 35px 10px;
    }
    .safa-image-wrapper {
        margin-bottom: 20px;
    }
    .safa-school-image {
        border-radius: 13px;
    }
    .safa-tab-navigation {
        gap: 4px;
        padding: 5px;
        border-radius: 12px;
    }
    .safa-tab-button {
        padding: 11px 6px;
        font-size: 11px;
        line-height: 1.3;
    }
    .safa-tab-content {
        margin-top: 15px;
    }
    .safa-content-card {
        padding: 20px 14px;
        border-radius: 14px;
    }
    .safa-section-heading {
        gap: 10px;
    }
    .safa-heading-line {
        width: 4px;
        min-width: 4px;
        height: 48px;
    }
    .safa-small-title {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .safa-section-heading h2 {
        font-size: 17px;
    }
    .safa-description {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    .safa-result-title h3 {
        font-size: 15px;
    }
    .safa-result-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .safa-result-table {
        min-width: 560px;
    }
    .safa-result-table thead th {
        padding: 12px 13px;
        font-size: 10px;
    }
    .safa-result-table tbody td {
        padding: 12px 13px;
        font-size: 11px;
    }
    .safa-documents-table {
        min-width: 600px;
    }
    .safa-documents-table thead th {
        padding: 12px 14px;
        font-size: 9px;
    }
    .safa-documents-table tbody td {
        padding: 13px 14px;
        font-size: 11px;
    }
    .safa-view-button {
        min-width: 60px;
        padding: 7px 10px;
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
    .safa-information-section {
        padding-left: 7px;
        padding-right: 7px;
    }
    .safa-tab-button {
        padding: 10px 4px;
        font-size: 10px;
    }
    .safa-content-card {
        padding: 17px 12px;
    }
    .safa-section-heading h2 {
        font-size: 16px;
    }
}


/* =========================================================
   SAFA SCHOOL OVERVIEW
========================================================= */

.safa-overview-section {
    width: 100%;
    padding: 60px 20px;
    background: #f7fbf8;
    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.safa-overview-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================================
   SCHOOL IMAGE
========================================================= */

.safa-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.safa-school-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(23, 107, 67, 0.12);
    transition: all 0.35s ease;
}

.safa-school-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(23, 107, 67, 0.18);
}


/* =========================================================
   OVERVIEW CARD
========================================================= */

.safa-overview-card {
    width: 100%;
    padding: 38px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #dceee3;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(31, 100, 60, 0.08);
    transition: all 0.3s ease;
}

.safa-overview-card:hover {
    box-shadow: 0 18px 45px rgba(31, 100, 60, 0.12);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.safa-section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}


/* ICON */

.safa-heading-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient( 135deg, #176b43, #238b57);
    border-radius: 13px;
    font-size: 18px;
    box-shadow: 0 7px 18px rgba(35, 139, 87, 0.18);
}


/* SMALL TITLE */

.safa-small-title {
    display: block;
    margin-bottom: 4px;
    color: #238b57;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* MAIN TITLE */

.safa-section-heading h2 {
    margin: 0;
    color: #183c2a;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.safa-description {
    margin: 0 0 35px;
    color: #596a61;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   RESULT SECTION
========================================================= */

.safa-result-section {
    margin-bottom: 35px;
}

.safa-result-section:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESULT HEADING
========================================================= */

.safa-result-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}


/* RESULT ICON */

.safa-result-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d7c4b;
    background: #e8f7ed;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.safa-result-heading:hover .safa-result-icon {
    color: #ffffff;
    background: #238b57;
    transform: translateY(-2px);
}


/* RESULT SMALL LABEL */

.safa-result-heading span {
    display: block;
    margin-bottom: 3px;
    color: #7b8b82;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* RESULT TITLE */

.safa-result-heading h3 {
    margin: 0;
    color: #214936;
    font-size: 18px;
    font-weight: 700;
}


/* =========================================================
   TABLE WRAPPER
========================================================= */

.safa-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dceee3;
    border-radius: 13px;
    -webkit-overflow-scrolling: touch;
}


/* =========================================================
   RESULT TABLE
========================================================= */

.safa-result-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #ffffff;
}


/* =========================================================
   TABLE HEADER
========================================================= */

.safa-result-table thead th {
    padding: 15px 18px;
    color: #176b43;
    background: #eff9f3;
    border-bottom: 1px solid #dceee3;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}


/* =========================================================
   TABLE BODY
========================================================= */

.safa-result-table tbody td {
    padding: 15px 18px;
    color: #52635a;
    font-size: 13px;
    border-bottom: 1px solid #edf3ef;
    vertical-align: middle;
}


/* LAST ROW */

.safa-result-table tbody tr:last-child td {
    border-bottom: none;
}


/* ROW HOVER */

.safa-result-table tbody tr {
    transition: all 0.25s ease;
}

.safa-result-table tbody tr:hover {
    background: #f4fbf6;
}


/* =========================================================
   SUCCESS BADGE
========================================================= */

.safa-success-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    padding: 5px 10px;
    color: #1b7748;
    background: #e8f7ed;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.safa-result-table tr:hover .safa-success-badge {
    color: #ffffff;
    background: #238b57;
}


/* =========================================================
   TABLE SCROLLBAR
========================================================= */

.safa-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.safa-table-wrapper::-webkit-scrollbar-track {
    background: #edf5ef;
}

.safa-table-wrapper::-webkit-scrollbar-thumb {
    background: #8bc9a5;
    border-radius: 10px;
}

.safa-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #238b57;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {
    .safa-overview-section {
        padding: 45px 15px;
    }
    .safa-overview-card {
        padding: 28px 22px;
        border-radius: 17px;
    }
    .safa-section-heading h2 {
        font-size: 21px;
    }
    .safa-description {
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {
    .safa-overview-section {
        padding: 35px 10px;
    }
    .safa-image-wrapper {
        margin-bottom: 20px;
    }
    .safa-school-image {
        border-radius: 14px;
    }
    .safa-overview-card {
        padding: 22px 15px;
        border-radius: 15px;
    }
    .safa-section-heading {
        gap: 11px;
    }
    .safa-heading-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 15px;
    }
    .safa-small-title {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .safa-section-heading h2 {
        font-size: 17px;
    }
    .safa-description {
        margin-bottom: 27px;
        font-size: 12px;
        line-height: 1.7;
    }
    .safa-result-heading {
        gap: 10px;
    }
    .safa-result-icon {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    .safa-result-heading span {
        font-size: 8px;
    }
    .safa-result-heading h3 {
        font-size: 15px;
    }
    .safa-result-table {
        min-width: 560px;
    }
    .safa-result-table thead th {
        padding: 12px 13px;
        font-size: 10px;
    }
    .safa-result-table tbody td {
        padding: 12px 13px;
        font-size: 11px;
    }
    .safa-success-badge {
        min-width: 48px;
        padding: 4px 8px;
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
    .safa-overview-section {
        padding-left: 7px;
        padding-right: 7px;
    }
    .safa-overview-card {
        padding: 18px 12px;
    }
    .safa-heading-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .safa-section-heading h2 {
        font-size: 15px;
    }
}