/* 🌅 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;
    }
}


/* =========================================
   IMPORTANT DOCUMENTS CARD
========================================= */

.safa-documents-card {
    width: 100%;
    margin-top: 25px;
    background: #ffffff;
    border: 1px solid #dceee3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(31, 100, 60, 0.08);
    transition: all 0.3s ease;
}

.safa-documents-card:hover {
    box-shadow: 0 18px 45px rgba(31, 100, 60, 0.12);
}


/* =========================================
   HEADER
========================================= */

.safa-documents-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 25px;
    background: linear-gradient( 135deg, #176b43, #238b57);
    color: #ffffff;
}

.safa-documents-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 19px;
}

.safa-documents-header span {
    display: block;
    margin-bottom: 3px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.safa-documents-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}


/* =========================================
   TABLE WRAPPER
========================================= */

.safa-documents-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* =========================================
   TABLE
========================================= */

.safa-documents-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}


/* Header */

.safa-documents-table thead th {
    padding: 14px 20px;
    background: #eff9f3;
    color: #176b43;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #dceee3;
}

.safa-documents-table thead th:last-child {
    width: 110px;
    text-align: center;
}


/* Rows */

.safa-documents-table tbody tr {
    transition: all 0.25s ease;
}

.safa-documents-table tbody tr:hover {
    background: #f3fbf6;
}


/* Cells */

.safa-documents-table tbody td {
    padding: 15px 20px;
    color: #46564e;
    font-size: 13px;
    line-height: 1.55;
    border-bottom: 1px solid #edf3ef;
    vertical-align: middle;
}

.safa-documents-table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================
   VIEW BUTTON
========================================= */

.safa-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 76px;
    padding: 8px 13px;
    border-radius: 8px;
    background: #e8f7ed;
    color: #1d7c4b !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.safa-view-btn:hover {
    background: #238b57;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(35, 139, 87, 0.2);
}

.safa-view-btn i {
    font-size: 11px;
}


/* =========================================
   SCROLLBAR
========================================= */

.safa-documents-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.safa-documents-table-wrapper::-webkit-scrollbar-track {
    background: #edf5ef;
}

.safa-documents-table-wrapper::-webkit-scrollbar-thumb {
    background: #8bc9a5;
    border-radius: 10px;
}

.safa-documents-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #238b57;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
    .safa-documents-card {
        margin-top: 20px;
        border-radius: 15px;
    }
    .safa-documents-header {
        padding: 18px;
    }
    .safa-documents-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .safa-documents-header h3 {
        font-size: 18px;
    }
    .safa-documents-table {
        min-width: 620px;
    }
    .safa-documents-table thead th {
        padding: 12px 15px;
    }
    .safa-documents-table tbody td {
        padding: 13px 15px;
        font-size: 12px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
    .safa-documents-header {
        padding: 16px;
    }
    .safa-documents-header h3 {
        font-size: 16px;
    }
    .safa-documents-header span {
        font-size: 9px;
    }
}


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
.fee-page-section {
    font-family: 'Poppins', sans-serif;
    padding: 60px 0;
    background: linear-gradient(180deg, #f9fafc, #ffffff);
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1f3b64;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
    animation: fadeInDown 1s ease-in-out;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ffb703;
    margin: 10px auto 0;
    border-radius: 2px;
    animation: growBar 1s ease-in-out;
}

.table-wrapper {
    overflow-x: auto;
    animation: fadeIn 1.2s ease-in-out;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.fee-table:hover {
    transform: scale(1.01);
}

.fee-table th {
    background-color: #023e8a;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px;
    border: none;
    letter-spacing: 0.3px;
}

.fee-table td {
    padding: 14px;
    text-align: center;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eaeaea;
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table tr:hover {
    background-color: #f5f9ff;
    transition: background 0.3s ease;
}

.fee-card {
    margin: 40px 0;
    padding: 40px;
    border-radius: 16px;
    background: #fff;
    animation: slideUp 1.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growBar {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .fee-table th,
    .fee-table td {
        font-size: 13px;
        padding: 10px;
    }
    .section-title {
        font-size: 22px;
    }
    .fee-card {
        padding: 25px;
    }
}

.flex-center {
    margin-bottom: 40px;
    margin-top: 20px;
}


/* General Section Styling */

.carts-section {
    padding: 20px 0;
    background-color: #fff;
    margin-top: -110px;
}

.carts-section.bg-light {
    background-color: #f8f9fa;
}

.cart-list-inner {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.left-item-total h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}


/* Table Styling */

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 15px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #dee2e6;
}

.table th {
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
}

.table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table tbody tr:hover {
    background-color: #e9f5ff;
}

.table tbody tr.table-secondary {
    background-color: #e2e3e5;
    font-weight: bold;
}


/* Responsive Table */

.table-responsive {
    overflow-x: auto;
}


/* Typography */

strong {
    font-weight: 600;
}


/* Small adjustments */

h3.text-center {
    text-align: center;
}