
.specific_page .hero {
    text-align: center;
    padding: 60px 0;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.specific_page .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #e0e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specific_page .hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.specific_page .section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.specific_page .section:nth-child(2) { animation-delay: 0.1s; }
.specific_page .section:nth-child(3) { animation-delay: 0.2s; }
.specific_page .section:nth-child(4) { animation-delay: 0.3s; }
.specific_page .section:nth-child(5) { animation-delay: 0.4s; }

.specific_page .section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #4a5568;
    position: relative;
}

.specific_page .section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c3c3c3, #ededed);
    border-radius: 2px;
}

.specific_page .accordionn {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specific_page .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specific_page .accordion-item:last-child {
    border-bottom: none;
}

.specific_page .accordion-headerr {
    background: linear-gradient(90deg, #c3c3c3, #ededed);
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2d3748;
}

.specific_page .accordion-headerr:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    transform: translateY(-2px);
}

.specific_page .accordion-headerr::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #667eea;
}
.rtl .specific_page .accordion-headerr::after{
    content: '+';
    position: absolute;
    left: 25px;
    right: unset;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #667eea;
}


.specific_page .accordion-headerr.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.specific_page .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.specific_page .accordion-content.active {
    max-height: unset;
}

.specific_page .accordion-body {
    padding: 30px;
    line-height: 1.7;
    color: #4a5568;
}

.specific_page .sub-accordion {
    margin-top: 20px;
}

.specific_page .sub-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.specific_page .sub-accordion-headerr {
    background: #f7fafc;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #2d3748;
    position: relative;
}

.specific_page .sub-accordion-headerr:hover {
    background: #edf2f7;
}

.specific_page .sub-accordion-headerr::after {
    content: '▶';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #667eea;
}

.specific_page .sub-accordion-headerr.active::after {
    transform: translateY(-50%) rotate(90deg);
}

.specific_page .sub-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.specific_page .sub-accordion-content.active {
    max-height: 300px;
}

.specific_page .sub-accordion-body {
    padding: 15px 20px;
    background: white;
    color: #718096;
}

.specific_page .tabs {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specific_page .tab-nav {
    display: flex;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specific_page .tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #718096;
    transition: all 0.3s ease;
    position: relative;
}

.specific_page .tab-button:hover {
    color: #4a5568;
    background: rgba(102, 126, 234, 0.1);
}

.specific_page .tab-button.active {
    color: #f0c77f;
    background: white;
}

.specific_page .tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c3c3c3, #ededed);
}

.specific_page .tab-content {
    display: none;
    padding: 30px;
    line-height: 1.7;
    color: #4a5568;
    animation: fadeIn 0.4s ease-out;
}

.specific_page .tab-content.active {
    display: block;
}

.specific_page .sub-tabs {
    margin-top: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.specific_page .sub-tab-nav {
    display: flex;
    background: #f7fafc;
}

.specific_page .sub-tab-button {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #718096;
    transition: all 0.3s ease;
}

.specific_page .sub-tab-button:hover {
    color: #4a5568;
    background: rgba(102, 126, 234, 0.1);
}

.specific_page .sub-tab-button.active {
    color: #f0c77f;
    background: white;
}

.specific_page .sub-tab-content {
    display: none;
    padding: 20px;
    background: white;
    color: #718096;
}

.specific_page .sub-tab-content.active {
    display: block;
}

.specific_page .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.specific_page .card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.specific_page .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.specific_page .card-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    color: #4a5568;
    padding-bottom: 0px !important;
}

.specific_page .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.specific_page .card-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
}

.specific_page .card-body {
    padding: 25px;
    line-height: 1.6;
    color: #4a5568;
}

.specific_page .card-footer {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
}

.specific_page .btn {
    background: linear-gradient(90deg, #9b1c26, #dc3545);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.specific_page .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .specific_page .hero h1 { font-size: 2.5rem; }
    .specific_page .hero p { font-size: 1.1rem; }
    .specific_page .section { padding: 25px; }
    .specific_page .cards-grid { grid-template-columns: 1fr; }
    .specific_page .tab-nav { flex-direction: column; }
    .specific_page .sub-tab-nav { flex-direction: column; }
}

.pdf-viewer-container {
            background-color: #ffffff;
            padding: 20px;
            margin: 30px 0;
            border-radius: 10px;
            border: 1px solid #ddd;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .pdf-title {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .pdf-embed-box {
            position: relative;
            border: 1px solid #ccc;
            border-radius: 6px;
            overflow: hidden;
        }

        .pdf-embed {
            width: 100%;
            height: 500px;
            border: none;
        }

        .pdf-fallback {
            font-size: 14px;
            color: #555;
            margin-top: 10px;
        }

        .pdf-fallback a {
            color: #b3b3b3;
            text-decoration: underline;
        }

        .pdf-fallback a:hover {
            color: #234026;
        }


        .file-list-container {
            margin: 30px 0;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            background: #fafafa;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            }

            .file-list-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #234026;
            }

            .custom-file-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
            }

            .custom-file-table th,
            .custom-file-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #ddd;
            text-align: left;
            }

            .custom-file-table th {
            background-color: #f0f0f0;
            color: #333;
            }

            .custom-file-table tr:hover {
            background-color: #f9f9f9;
            }

            .custom-file-table .actions a {
            margin-right: 8px;
            text-decoration: none;
            font-size: 16px;
            padding: 6px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
            }

            .btn-view {
            background-color: #8d8d8d;
            color: #fff;
            }

            .btn-view:hover {
            background-color: #969696;
            }

            .btn-download {
            background-color: #dc3545;
            color: #fff;
            }

            .btn-download:hover {
            background-color: #9b1c26;
            }

            .blog-details__text p , .blog-details__text span{
                line-height: 200% !important
            }

                        /* Base style */
            .zoomable {
                transition: transform 0.3s ease;
                cursor: zoom-in;
            }

            /* When zoomed */
            .zoomed {
                transform: scale(2); /* Zoom factor */
                cursor: zoom-out;
                z-index: 1000;
                position: relative;
            }
