﻿
/* تنسيقات الصفحة الرئيسية */
.hero-section {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../Images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    border-bottom: 1px solid #eee;
}

.podcast-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    .podcast-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.podcast-image {
    height: 200px;
    overflow: hidden;
    background-color: #f8f9fa;
}

    .podcast-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.category-card .card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

    .category-card .card:hover {
        background-color: #f8f9fa;
        transform: scale(1.03);
    }

.category-card .card-body {
    padding: 1.5rem;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #6c5ce7;
    }

.cta-section {
    background-color: #6c5ce7;
    background-image: linear-gradient(135deg, #6c5ce7 0%, #4a3dc4 100%);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* تنسيقات صفحة تفاصيل البودكاست */
.podcast-details .card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.audio-player {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

    .audio-player audio {
        width: 100%;
    }

.rating-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6c5ce7;
}

.comment-item {
    padding: 15px;
    transition: all 0.3s ease;
}

    .comment-item:hover {
        background-color: #f8f9fa;
    }

.related-podcast {
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .related-podcast:hover {
        background-color: #f8f9fa;
    }

.podcast-meta {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.share-buttons .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .podcast-details .row.g-0 {
        flex-direction: column;
    }

    .podcast-details .col-md-4 {
        width: 100%;
    }

    .podcast-details img.img-fluid {
        border-radius: 10px 10px 0 0 !important;
        width: 100%;
        height: auto;
    }
}

/* تنسيقات صفحة رفع البودكاست */
.file-upload-card {
    border: 2px dashed #6c5ce7;
    background-color: #f8f9fa;
}

    .file-upload-card:hover {
        border-color: #4a3dc4;
        background-color: #e9ecef;
    }

.file-upload-info {
    font-size: 0.9rem;
    color: #6c757d;
}

.upload-preview {
    max-width: 200px;
    max-height: 200px;
    display: block;
    margin: 0 auto;
}

.upload-status {
    font-weight: bold;
}

    .upload-status.success {
        color: #28a745;
    }

    .upload-status.error {
        color: #dc3545;
    }



/* تنسيقات صفحة تسجيل دخول المدير */
.admin-login {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.admin-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #6c5ce7;
    padding: 5px;
    background-color: white;
}

/* تنسيقات القوائم المنسدلة في لوحة التحكم */
.dropdown-menu {
    text-align: right;
}

/* تحسينات للجداول في لوحة التحكم */
.table-responsive {
    border-radius: 10px;
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

    .table th {
        background-color: #f8f9fa;
        font-weight: 600;
    }

/* تحسينات للأزرار */
.btn-primary {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
}

    .btn-primary:hover {
        background-color: #5649d6;
        border-color: #5649d6;
    }

/* تحسينات للبطاقات */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.card-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
}


/* تنسيقات صفحة تسجيل الدخول */
.login-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.login-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .login-card .card-header {
        padding: 1.5rem;
    }

    .login-card .card-body {
        padding: 2rem;
    }

    .login-card .input-group-text {
        width: 45px;
        justify-content: center;
    }

    .login-card .btn-primary {
        background-color: #6c5ce7;
        border-color: #6c5ce7;
        padding: 0.5rem;
    }

        .login-card .btn-primary:hover {
            background-color: #5649d6;
            border-color: #5649d6;
        }

    .login-card .form-check-input:checked {
        background-color: #6c5ce7;
        border-color: #6c5ce7;
    }

@media (max-width: 576px) {
    .login-card .card-body {
        padding: 1.5rem;
    }
}

/**********Custom CSS **********/

:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --dark-color: #2d3436;
    --light-color: #f5f6fa;
    --success-color: #00b894;
    --danger-color: #d63031;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f8f9fa;
    padding-top: 70px;
}

.navbar {
    background-color: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

.card-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0 !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: #5649d6;
        border-color: #5649d6;
    }

.table th {
    background-color: var(--light-color);
    font-weight: 600;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}


.audio-player {
    width: 100%;
    border-radius: 20px;
    background: var(--light-color);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.25);
}

.badge-primary {
    background-color: var(--primary-color);
}

/* في قسم الـ CSS */
th.sortable {
    cursor: pointer;
    position: relative;
}

    th.sortable:hover {
        background-color: #f5f5f5;
    }

    th.sortable:after {
        content: "↓";
        position: absolute;
        right: 5px;
        color: #999;
    }

    th.sortable.asc:after {
        content: "↑";
    }

    th.sortable.desc:after {
        content: "↓";
    }

/* تنسيقات التعليقات والتقييمات */
.comment-item {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

    .comment-item:hover {
        background-color: #e9ecef;
    }

.star-rating {
    direction: ltr;
    unicode-bidi: bidi-override;
    display: inline-block;
}

.star {
    color: #ffc107;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .star:hover {
        transform: scale(1.2);
    }

.rating-section {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
}

.add-comment {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
}

.rating-info {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: bold;
}

    .rating-info.text-success {
        color: #28a745;
    }

    .rating-info.text-muted {
        color: #6c757d;
    }

/*******************Categories************************/

.page-description {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.category-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(110, 72, 170, 0.3), rgba(157, 80, 187, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.view-category-btn {
    background-color: white;
    color: #6e48aa;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

    .view-category-btn:hover {
        background-color: #6e48aa;
        color: white;
    }

.category-info {
    padding: 20px;
}

.category-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.category-desc {
    color: #666;
    margin-bottom: 15px;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.stat {
    display: flex;
    align-items: center;
}

    .stat i {
        margin-right: 5px;
        color: #9d50bb;
    }

.featured-podcasts {
    margin-top: 50px;
}

.section-title {
    color: #6e48aa;
    border-bottom: 2px solid #6e48aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.podcast-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.podcast-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

    .podcast-item:hover {
        transform: translateY(-3px);
    }

.podcast-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.podcast-details {
    padding: 15px;
}

.podcast-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
}

.podcast-category {
    color: #9d50bb;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.listen-btn {
    display: block;
    text-align: center;
    background-color: #6e48aa;
    color: white;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    /*font-size:15px;*/
    transition: background-color 0.3s;
}

    .listen-btn:hover {
        background-color: #9d50bb;
        color: white;
    }

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .nav-container {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

        .nav-links a {
            margin: 5px 10px;
        }
}
/*************************Contact******************************/


:root {
    --primary: #6e48aa;
    --primary-dark: #4a2c7a;
    --secondary: #9d50bb;
    --accent: #ff6b6b;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }*/

/* أنماط الشريط العلوي */
/*.navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 2rem;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }*/

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }*/

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(110, 72, 170, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(110, 72, 170, 0.4);
    }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: white;
    }

/* قسم البطل */
.contact-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, rgba(110, 72, 170, 0.9), rgba(157, 80, 187, 0.8)), url('images/contact-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    height:40px;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

.contact-hero-content {
    max-width: 1200px;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

    .breadcrumb-item a {
        color: white;
        text-decoration: none;
    }

    .breadcrumb-item:not(:last-child)::after {
        content: '/';
        margin-left: 0.5rem;
        opacity: 0.6;
    }

/* قسم الاتصال الرئيسي */
.contact-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
}

    .section-title span {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* نموذج الاتصال */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark);
    text-align: right;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(110, 72, 170, 0.1);
        outline: none;
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.validation-error {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
    text-align: right;
}

.form-actions {
    margin-top: 2rem;
}

/* معلومات الاتصال */
.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark);
    text-align: right;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .contact-method:hover {
        transform: translateX(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.method-details {
    color: var(--gray);
    line-height: 1.6;
}

.method-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .method-link:hover {
        color: var(--secondary);
    }

/* الخريطة */
.map-section {
    padding: 0 2rem 5rem;
    background: var(--light);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* الأسئلة الشائعة */
.faq-section {
    padding: 5rem 2rem;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: var(--light);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: var(--light-gray);
    }

    .faq-question::after {
        content: '+';
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

/* التذييل */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        transform: translateY(-3px);
    }

/*.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 0;
        width: 30px;
        height: 3px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 0.75rem;
}

    .footer-link a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-link a:hover {
            color: white;
            padding-left: 0.5rem;
        }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}
*/
/* تأثيرات التمرير */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* وسائط متجاوبة */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .contact-info {
        padding: 2rem;
    }
}

/* قائمة الهاتف */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* حالات النجاح والخطأ */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-icon {
    font-size: 1.5rem;
}

/********************************About****************************/

:root {
    --primary: #6e48aa;
    --primary-dark: #4a2c7a;
    --secondary: #9d50bb;
    --accent: #ff6b6b;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }*/

/* أنماط الشريط العلوي */
/*.navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 2rem;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }*/

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*.nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }*/

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(110, 72, 170, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(110, 72, 170, 0.4);
    }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: white;
    }

/* قسم البطل */
.about-hero {
    min-height: 40vh;
    background: linear-gradient(50deg, rgba(110, 72, 170, 0.9), rgba(157, 80, 187, 0.8)), url('images/about-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    height:40px;
}

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

.about-hero-content {
    max-width: 1200px;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.0rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

    .breadcrumb-item a {
        color: white;
        text-decoration: none;
    }

    .breadcrumb-item:not(:last-child)::after {
        content: '/';
        margin-left: 0.5rem;
        opacity: 0.6;
    }

/* قسم القيم والرؤية */
.mission-vision {
    padding: 5rem 2rem;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
}

    .section-title span {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
}

    .mv-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .mv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mv-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.mv-description {
    color: var(--gray);
    line-height: 1.8;
}

/* قسم الفريق */
.team-section {
    padding: 5rem 2rem;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

    .team-member:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-content {
    padding: 2rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        transform: translateY(-3px);
    }

/* قسم الإحصائيات */
.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.2);
    }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* قسم القصة */
.story-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
    text-align: right;
}

.story-timeline {
    margin: 4rem 0;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
        text-align: left;
    }

.timeline-date {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.timeline-description {
    color: var(--gray);
    line-height: 1.6;
}

/* قسم الشركاء */
.partners-section {
    padding: 5rem 2rem;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 150px;
}

    .partner-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .partner-logo img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
    }

/* قسم الدعوة للعمل */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    height:120px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

    .btn-light:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    }

/* التذييل */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        transform: translateY(-3px);
    }

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 0;
        width: 30px;
        height: 3px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 0.75rem;
}

    .footer-link a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-link a:hover {
            color: white;
            padding-left: 0.5rem;
        }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* تأثيرات التمرير */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* الوسائط المتجاوبة */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

        .timeline-item:nth-child(even) {
            flex-direction: column;
        }

    .cta-buttons {
        flex-direction: column;
    }
}

/* قائمة الهاتف */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* قسم الميزات */
.features {
    padding: 5rem 2rem;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
}

    .section-title span {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-description {
    color: var(--gray);
    line-height: 1.6;
}


/********************************Register************************************/

body {
    background-color: #f8f9fa;
    font-family: Tajawal, Verdana, sans-serif;
}

.register-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 500;
}

/****************************ForgotPassword********************************/

.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.input-group-text {
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

/*************************************MyProfile**************************************/

body {
    font-family: Tajawal, Arial;
    margin: 20px;
    direction: rtl;
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-group input[type="text"],
    .form-group input[type="password"],
    .form-group input[type="email"],
    .form-group textarea {
        width: 80%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

.btn {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cancel {
    background-color: #f44336;
}

.avatar-preview {
    max-width: 150px;
    max-height: 150px;
    margin-bottom: 10px;
}

.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/**********************************Podcasts**************************************/

/* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        
        .header {
            background: linear-gradient(135deg, #6e48aa, #9d50bb);
            color: white;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 10px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav-links {
            display: flex;
        }
        
        .nav-links a {
            color: #6e48aa;
            text-decoration: none;
            margin-left: 20px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #9d50bb;
        }
        
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        .page-title {
            text-align: center;
            color: #6e48aa;
            margin-bottom: 30px;
            font-size: 2.2rem;
        }*/
.filter-section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.filter-title {
    margin-top: 0;
    color: #6e48aa;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

    .filter-group label {
        margin-bottom: 5px;
        font-weight: 500;
    }

    .filter-group select, .filter-group input {
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
    }

.btn-filter {
    background-color: #6e48aa;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 25px;
    transition: background-color 0.3s;
}

    .btn-filter:hover {
        background-color: #9d50bb;
    }

.podcast-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.podcast-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .podcast-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.podcast-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #6e48aa;
}

.podcast-info {
    padding: 20px;
}

.podcast-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.podcast-desc {
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-listen {
    display: block;
    width: 100%;
    background-color: #6e48aa;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .btn-listen:hover {
        background-color: #9d50bb;
        color: white;
    }

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

    .pagination a {
        color: #6e48aa;
        padding: 8px 16px;
        text-decoration: none;
        border: 1px solid #ddd;
        margin: 0 4px;
        border-radius: 4px;
        transition: background-color 0.3s;
    }

        .pagination a.active {
            background-color: #6e48aa;
            color: white;
            border: 1px solid #6e48aa;
        }

        .pagination a:hover:not(.active) {
            background-color: #f0f0f0;
        }

.no-results {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    grid-column: 1 / -1;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .podcast-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-container {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 15px;
        justify-content: center;
    }
}

/**********************************PodcastDetails***************************************/

/* body {
         font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         margin: 0;
         padding: 0;
         background-color: #f9f9f9;
         color: #333;
         line-height: 1.6;
     }
     
     .header {
         background: linear-gradient(135deg, #6e48aa, #9d50bb);
         color: white;
         padding: 15px 0;
         text-align: center;
     }
     
     .navbar {
         background-color: #fff;
         box-shadow: 0 2px 5px rgba(0,0,0,0.1);
         padding: 10px 0;
     }
     
     .nav-container {
         display: flex;
         justify-content: space-between;
         align-items: center;
         max-width: 1200px;
         margin: 0 auto;
         padding: 0 20px;
     }
     
     .nav-links {
         display: flex;
     }
     
     .nav-links a {
         color: #6e48aa;
         text-decoration: none;
         margin-left: 20px;
         font-weight: 500;
         transition: color 0.3s;
     }
     
     .nav-links a:hover {
         color: #9d50bb;
     }
     
     .container {
         max-width: 1200px;
         margin: 30px auto;
         padding: 0 20px;
     }*/
.breadcrumb {
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: #6e48aa;
    text-decoration: none;
}

    .breadcrumb a:hover {
        text-decoration: underline;
    }

.podcast-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .podcast-details {
        flex-direction: row;
    }

    .podcast-info {
        flex: 1;
    }

    .podcast-sidebar {
        width: 350px;
    }
}

.podcast-header {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.podcast-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.podcast-content {
    padding: 25px;
}

.podcast-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #333;
}

.podcast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
}

    .meta-item i {
        margin-left: 5px;
        color: #9d50bb;
    }

.podcast-description {
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.audio-player {
    width: 100%;
    margin: 20px 0;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: #6e48aa;
    color: white;
}

    .btn-primary:hover {
        background: #9d50bb;
    }

.btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

    .btn-secondary:hover {
        background: #e0e0e0;
    }

.btn i {
    margin-right: 8px;
}

.favorite-btn {
    background: #ff6b6b;
    color: white;
}

    .favorite-btn:hover {
        background: #ee5a5a;
    }

.favorited {
    background: #4CAF50;
}

    .favorited:hover {
        background: #45a049;
    }

.podcast-sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    color: #6e48aa;
}

.related-podcasts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-podcast {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 6px;
    transition: background-color 0.3s;
    text-decoration: none;
    color: #333;
}

    .related-podcast:hover {
        background-color: #f5f5f5;
    }

    .related-podcast img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 4px;
    }

.related-podcast-info {
    flex: 1;
}

.related-podcast-title {
    font-weight: 600;
    margin: 0 0 5px 0;
    font-size: 15px;
}

.related-podcast-category {
    font-size: 13px;
    color: #9d50bb;
}

.comments-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.comment-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        resize: vertical;
        min-height: 100px;
    }

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    padding: 15px;
    border-radius: 6px;
    background-color: #f9f9f9;
    border-left: 3px solid #6e48aa;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: #6e48aa;
}

.comment-date {
    font-size: 12px;
    color: #888;
}

.comment-content {
    color: #444;
    line-height: 1.6;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-info {
    background-color: #e7f3ff;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.social-share {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.facebook:hover {
    background: #3b5998;
    color: white;
}

.twitter:hover {
    background: #1da1f2;
    color: white;
}

.whatsapp:hover {
    background: #25d366;
    color: white;
}

.login-prompt {
    background: #fff8e1;
    border: 1px solid #ffecb3;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

/*******************************PodcastRating***************************************************/

.star-rating .star {
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    text-decoration: none;
    margin: 0 2px;
    transition: color 0.3s ease;
}

.star-rating .star:hover,
.star-rating .star.filled {
    color: #ffc107;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.star-rating .star.half-filled {
    background: linear-gradient(90deg, #ffc107 50%, #ccc 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-info {
    font-size: 16px;
    color: #495057;
    margin-top: 10px;
}

/********************************ResetPassword*********************************/

.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.input-group-text {
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

****************************************************************************


