/* ==============================
   Variables & Reset
   ============================== */

:root {
    --primary-turquoise: #00dfdf;
    --light-turquoise: #28bdb5;
    --dark-turquoise: #28bdb5;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #dee2e6;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

@font-face {
    font-family: "Peyda-main";
    src: url("../fonts/peydabold.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: "vazir-main";
    src: url("../fonts/vazir.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "lalezar-main";
    src: url("../fonts/lalezar.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}



* {
    font-family: "Peyda-main";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--off-white) 0%, #e0f7fa 100%);
    color: var(--text-dark);
    line-height: 1.8;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==============================
   Navbar
   ============================== */

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Islamic Pattern Backgrounds */
.islamic-pattern-overlay-cat{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/pattern.png);
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
}



.row_box {
    display: flex;
    width: 90%;

}


.col_box30 {
    z-index: 99;
    width: 30%;
    justify-content: center;
    display: flex;
}

.col_box70 {
    width: 70%;
}

.col_box50 {
    width: 50%;
}

.mokaup {
    width: 350px;
}

/* Header Styles */
.main-header {

    box-shadow: var(--shadow-md);
   
    background: linear-gradient(135deg, var(--primary-turquoise) 0%, var(--dark-turquoise) 100%);
    position: relative;
    color: white;
    height: fit-content;
}

.navbar {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    background: rgba(0, 119, 113, 0.705);
    backdrop-filter: blur(4px);
    border-radius: var(--border-radius);
    padding: 15px 25px;
}

.nav-menu .logo {
    display: none;
}

.menu-header {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.user-wallet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    width: 100%;

}

.user-info-menu {
    margin: 10px;
    display: flex;
    justify-content: space-between;

    width: 100%;
}

.user-wallet svg {
    color: white;
}

.level-badge {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
    color: #2D3748;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
}

.user-wallet {

    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.user-level {
    width: 100%;
    text-align: center;
}


.menu-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu-list a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
}

.menu-list a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.menu-list .icon {
    font-size: 18px;
}



.btn-danger {
    background: rgba(223, 31, 31, 0.678);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;

}

.btn-success {
    background: rgba(8, 221, 175, 0.466);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-danger:hover {
    background: white;
    color: var(--danger-color);
}

.btn-success:hover {
    background: white;
    color: var(--primary-dark);
}


p {
    align-content: center;
}


.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--off-white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-turquoise);
    color: var(--white);
    transform: translateX(5px);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.user-name {
    font-weight: 600;
    color: var(--text-dark);
}

.user-level {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-login {
    padding: 10px 24px;
    background: var(--primary-turquoise);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--dark-turquoise);
    transform: translateY(-2px);
}

/* ==============================
   Main Content
   ============================== */

.main-content {
    padding: 40px 0 60px;
}

/* ادامه فایل CSS از قسمت Breadcrumb */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-turquoise);
}

.breadcrumb .separator {
    color: var(--medium-gray);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 600;
}

/* ==============================
   Layout
   ============================== */

.project-detail-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

/* ==============================
   Main Column
   ============================== */

.main-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Cover Image */
.project-cover {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.project-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.status-badge.active {
    background: var(--success);
    color: var(--white);
}

.status-badge.completed {
    background: var(--primary-turquoise);
    color: var(--white);
}

.status-badge.pending {
    background: var(--warning);
    color: var(--text-dark);
}

.status-badge.cancelled {
    background: var(--danger);
    color: var(--white);
}

/* Project Header */
.project-header {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.project-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    flex: 1;
}

.project-type-badge {
    background: var(--light-turquoise);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.charity-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.charity-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-turquoise);
}

.charity-details {
    display: flex;
    flex-direction: column;
}

.charity-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.charity-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-turquoise);
}

/* ==============================
   Progress Section
   ============================== */

.progress-section {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.raised-info,
.goal-info {
    display: flex;
    flex-direction: column;
}

.raised-amount,
.goal-amount {
    font-size: 1.5rem;
    font-weight: 800;
}

.raised-amount {
    color: var(--primary-turquoise);
}

.goal-amount {
    color: var(--text-muted);
}

.raised-label,
.goal-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.progress-bar-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-turquoise) 0%, var(--light-turquoise) 100%);
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-percentage {
    position: absolute;
    left: 10px;
    top: -30px;
    background: var(--primary-turquoise);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.progress-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stat-item i {
    color: var(--primary-turquoise);
    font-size: 1.1rem;
}

/* ==============================
   Volunteer Section
   ============================== */

.volunteer-section {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.volunteer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--off-white);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-turquoise);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==============================
   Description Section
   ============================== */

.description-section,
.additional-details {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-turquoise);
}

.section-title i {
    color: var(--primary-turquoise);
}

.description-content {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-dark);
    text-align: justify;
}

/* ==============================
   Additional Details
   ============================== */

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: var(--off-white);
    border-radius: 10px;
    border-right: 4px solid var(--primary-turquoise);
}

.detail-item.full-width {
    grid-column: 1 / -1;
    border-right: none;
    background: transparent;
    padding: 0;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.detail-value {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
}

.detail-value.success {
    color: var(--success);
}

.btn-report {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--danger);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-report:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==============================
   Sidebar
   ============================== */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Action Card */
.action-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);

    top: 100px;

}

.action-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

/* Amount Selector */
.amount-selector {
    margin-bottom: 20px;
}

.amount-selector label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.amount-input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: "Peyda-main";
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.amount-input:focus {
    outline: none;
    border-color: var(--primary-turquoise);
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.quick-amount {
    padding: 10px;
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: "Peyda-main";
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-amount:hover {
    background: var(--primary-turquoise);
    color: var(--white);
    border-color: var(--primary-turquoise);
}

/* Action Buttons */
.btn-action {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-family: "Peyda-main";
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-donate,
.btn-volunteer {
    background: linear-gradient(135deg, var(--primary-turquoise) 0%, var(--dark-turquoise) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-donate:hover,
.btn-volunteer:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.btn-share {
    background: var(--white);
    color: var(--primary-turquoise);
    border: 2px solid var(--primary-turquoise);
}

.btn-share:hover {
    background: var(--primary-turquoise);
    color: var(--white);
}

/* Similar Projects */
.similar-projects {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-md);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: var(--primary-turquoise);
}

.similar-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--off-white);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.similar-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.similar-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.similar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.similar-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.mini-progress {
    width: 100%;
    height: 6px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    background: var(--primary-turquoise);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.no-similar {
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
}

/* ==============================
   Footer
   ============================== */


/* Footer */
.main-footer {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    color: white;
    position: relative;
    margin-top: 80px;
    padding: 60px 0 30px;
}

.islamic-pattern-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px);
    opacity: 0.5;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-slogan {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}


/* ==============================
   Responsive Design
   ============================== */
@media (max-width:1200px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        transition: right 0.3s ease;
        overflow-y: auto;
        border-radius: 0;
    }

    .nav-menu .logo {
        display: flex;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .menu-list {
        flex-direction: column;
        width: 100%;
    }

    .menu-list a {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 1024px) {
    .project-detail-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .action-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .project-title {
        font-size: 1.5rem;
    }

    .header-top {
        flex-direction: column;
    }

    .project-type-badge {
        align-self: flex-start;
    }

    .project-cover {
        height: 300px;
    }

    .progress-header {
        flex-direction: column;
        gap: 15px;
    }

    .volunteer-stats {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .quick-amounts {
        grid-template-columns: 1fr;
    }

    .nav-content {
        gap: 15px;
    }

    .btn-back {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .stat-box {
        padding: 15px;
    }

    .stat-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
}

/* ==============================
   Animations
   ============================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-column>*,
.sidebar>* {
    animation: fadeIn 0.6s ease forwards;
}

.main-column>*:nth-child(1) {
    animation-delay: 0.1s;
}

.main-column>*:nth-child(2) {
    animation-delay: 0.2s;
}

.main-column>*:nth-child(3) {
    animation-delay: 0.3s;
}

.main-column>*:nth-child(4) {
    animation-delay: 0.4s;
}

/* ==============================
   Print Styles
   ============================== */

@media print {

    .navbar,
    .sidebar,
    .main-footer {
        display: none;
    }

    .project-detail-layout {
        grid-template-columns: 1fr;
    }

    body {
        background: white;
    }
}