/* ====================================
   Case Studies - Complete Styling - FIXED VERSION
   ==================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 120px 0 80px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(247, 147, 30, 0.1) 0%, rgba(196, 154, 108, 0.05) 100%);
    pointer-events: none;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #94a3b8;
}

/* ====================================
   Filters Section
   ==================================== */
.filters-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(247, 147, 30, 0.1);
}

.filters-form {
    background: linear-gradient(135deg, #2B2B2B 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(247, 147, 30, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(247, 147, 30, 0.2);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(247, 147, 30, 0.2);
    color: var(--white);
}

.form-select option {
    background: #2B2B2B;
    color: var(--white);
}

.results-count {
    color: #cbd5e1;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(247, 147, 30, 0.2);
}

/* ====================================
   Case Studies Grid Background - FIXED
   ==================================== */
.case-studies-grid {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 80px 0;
    overflow: hidden;
    width: 100%;
}

.case-studies-grid .container {
    overflow: hidden;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.case-studies-grid .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden;
}

.case-studies-grid .col-lg-4,
.case-studies-grid .col-md-6 {
    padding-left: 12px;
    padding-right: 12px;
}

/* ====================================
   Case Studies Grid - LISTING PAGE - FIXED
   ==================================== */
.case-studies-grid .case-study-card {
    background: linear-gradient(135deg, #2B2B2B 0%, #1a1a1a 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid rgba(247, 147, 30, 0.1);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
}

.case-studies-grid .case-study-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.3);
    background: linear-gradient(135deg, #333333 0%, #2B2B2B 100%);
}

.case-studies-grid .case-study-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.case-studies-grid .case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-studies-grid .case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-studies-grid .case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.case-studies-grid .case-study-card:hover .case-study-overlay {
    opacity: 1;
}

.case-studies-grid .case-study-overlay .btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.case-studies-grid .case-study-overlay .btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    color: white;
}

.case-studies-grid .case-study-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    word-wrap: break-word;
}

.case-studies-grid .case-study-industry {
    display: inline-block;
    background: linear-gradient(135deg, #F7931E 0%, #C49A6C 100%);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
    max-width: 100%;
    box-shadow: 0 3px 10px rgba(247, 147, 30, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-studies-grid .case-study-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.case-studies-grid .case-study-client {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.case-studies-grid .case-study-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
    flex-wrap: wrap;
}

.case-studies-grid .metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(247, 147, 30, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(247, 147, 30, 0.2);
    white-space: nowrap;
}

.case-studies-grid .metric i {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.case-studies-grid .case-study-description {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.case-studies-grid .case-study-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(247, 147, 30, 0.1);
}

.case-studies-grid .tech-badge {
    background: rgba(247, 147, 30, 0.1);
    color: #cbd5e1;
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(247, 147, 30, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.case-studies-grid .tech-badge:hover {
    background: rgba(247, 147, 30, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ====================================
   Pagination
   ==================================== */
.pagination {
    gap: 0.5rem;
}

.page-link {
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-link:disabled {
    color: #64748b;
    background: rgba(100, 116, 139, 0.1);
    border-color: rgba(100, 116, 139, 0.2);
}

/* ====================================
   No Results
   ==================================== */
.no-results {
    padding: 4rem 2rem;
}

.no-results i {
    color: #94a3b8;
    animation: float 3s ease-in-out infinite;
}

.no-results h3 {
    color: var(--white);
    margin-top: 1.5rem;
    font-size: 1.8rem;
}

.no-results p {
    color: #94a3b8;
    margin: 1rem 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ====================================
   CTA Section (Grid Page)
   ==================================== */
.cta-section {
    background: linear-gradient(135deg, #F7931E 0%, #C49A6C 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.cta-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
}

/* ====================================
   Case Study Detail Page
   ==================================== */

/* Hero Section */
.case-study-hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.case-study-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    z-index: 1;
}

.case-study-hero .container {
    position: relative;
    z-index: 2;
}

.case-study-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.industry-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F7931E 0%, #C49A6C 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
}

.case-study-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.case-study-hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.case-study-hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-weight: 500;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Content Section */
.case-study-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 80px 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(247, 147, 30, 0.2);
}

.content-block h2 i {
    color: var(--primary-color);
}

.content-text {
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 1rem;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.tech-item {
    background: rgba(247, 147, 30, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(247, 147, 30, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(247, 147, 30, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.tech-item i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.results-block {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(196, 154, 108, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(247, 147, 30, 0.2);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: linear-gradient(135deg, #2B2B2B 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(247, 147, 30, 0.1);
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.2);
    background: linear-gradient(135deg, #333333 0%, #2B2B2B 100%);
}

.sidebar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(247, 147, 30, 0.2);
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.info-row strong {
    color: var(--white);
    margin-right: 0.5rem;
}

.cta-card {
    background: linear-gradient(135deg, #F7931E 0%, #C49A6C 100%);
    border: none;
}

.cta-card h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    background: rgba(247, 147, 30, 0.1);
    border: 2px solid rgba(247, 147, 30, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.share-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
}

.share-btn.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.share-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.share-btn.email:hover {
    background: #EA4335;
    border-color: #EA4335;
}

/* Related Studies */
.related-studies {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 80px 0;
    border-top: 2px solid rgba(247, 147, 30, 0.1);
    overflow: hidden;
}

.related-studies .container {
    overflow: hidden;
}

.related-studies .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.related-studies .case-study-card {
    background: linear-gradient(135deg, #2B2B2B 0%, #1a1a1a 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid rgba(247, 147, 30, 0.1);
    display: flex;
    flex-direction: column;
}

.related-studies .case-study-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.3);
    background: linear-gradient(135deg, #333333 0%, #2B2B2B 100%);
}

.related-studies .case-study-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.related-studies .case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-studies .case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.related-studies .case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.related-studies .case-study-card:hover .case-study-overlay {
    opacity: 1;
}

.related-studies .case-study-overlay .btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.related-studies .case-study-overlay .btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    color: white;
}

.related-studies .case-study-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-studies .case-study-industry {
    display: inline-block;
    background: linear-gradient(135deg, #F7931E 0%, #C49A6C 100%);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
    box-shadow: 0 3px 10px rgba(247, 147, 30, 0.2);
}

.related-studies .case-study-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.related-studies .case-study-client {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ====================================
   Mobile Responsive
   ==================================== */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }

    .case-study-hero-title {
        font-size: 2rem;
    }

    .sidebar {
        position: relative;
        top: 0 !important;
    }

    .case-study-hero-info {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .filters-form {
        padding: 1.5rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .case-studies-grid .case-study-image {
        height: 200px;
    }

    .case-studies-grid .case-study-content {
        padding: 1.2rem;
    }

    .case-studies-grid .case-study-card h3 {
        font-size: 1.1rem;
    }

    .case-studies-grid .case-study-metrics {
        font-size: 0.8rem;
    }

    .case-studies-grid .metric {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .case-study-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }

    .case-study-hero-title {
        font-size: 1.5rem;
    }

    .case-study-hero-subtitle {
        font-size: 1rem;
    }

    .technologies-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 60px 0 40px;
        margin-top: 70px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .filters-form {
        padding: 1rem;
    }

    .results-count {
        order: -1;
        width: 100%;
        text-align: center;
    }

    .case-studies-grid .case-study-image {
        height: 180px;
    }

    .case-studies-grid .case-study-content {
        padding: 1rem;
    }

    .case-studies-grid .case-study-card h3 {
        font-size: 1rem;
    }

    .case-study-hero {
        min-height: 40vh;
        padding: 90px 0 50px;
    }

    .case-study-hero-title {
        font-size: 1.25rem;
    }

    .case-study-hero-subtitle {
        font-size: 0.9rem;
    }

    .case-study-hero-info {
        flex-direction: column;
        gap: 1rem;
    }

    .content-block h2 {
        font-size: 1.4rem;
    }

    .case-studies-grid .tech-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .sidebar-card {
        margin-bottom: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ====================================
   Print Styles
   ==================================== */
@media print {
    .navbar,
    .filters-section,
    .cta-section,
    .pagination,
    .sidebar,
    .back-to-top {
        display: none;
    }

    .case-study-content {
        background: white;
        color: black;
    }

    .content-block h2 {
        color: black;
    }
}
