.case-filter-section {
    padding: 60px 0 40px;
}

.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    background: #fff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: #0082cf;
    color: #0082cf;
}

.filter-tab.active {
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 130, 207, 0.3);
}

/* Case Study Grid */
.case-grid-section {
    padding: 40px 0 100px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Case Card */
.case-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 130, 207, 0.15);
}

.case-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-card-image img {
    transform: scale(1.08);
}

.case-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 58, 91, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-card:hover .case-card-overlay {
    opacity: 1;
}

.case-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-card-content {
    padding: 28px;
}

.case-card-logo {
    height: 32px;
    margin-bottom: 16px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.case-card:hover .case-card-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.case-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.case-card:hover .case-card-title {
    color: #0082cf;
}

.case-card-desc {
    font-size: 15px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
    
}
.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #64748b;
}
.clamp-text p {
   font-size: 18px!important;
}
.clamp-text h1, .clamp-text h2, .clamp-text h3, .clamp-text h4, .clamp-text h5, .clamp-text h6 {
   font-size: 18px!important;
   font-weight: 800;
}
.case-card-stats {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.case-stat {
    text-align: center;
}

.case-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #0082cf;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.case-stat-label {
    font-size: 12px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0082cf;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    margin-top: 16px;
    transition: gap 0.3s ease;
}

.case-card-link:hover {
    gap: 12px;
}

.case-card-link svg {
    transition: transform 0.3s ease;
}

.case-card-link:hover svg {
    transform: translateX(4px);
}

/* Featured Case Study */
.featured-case {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-case .case-card-image {
    height: 100%;
    min-height: 400px;
}

.featured-case .case-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.featured-badge svg {
    width: 14px;
    height: 14px;
}

/* Stats Section */
.case-stats-section {
    background: linear-gradient(90deg, #003859, #00629D);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.case-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='200' cy='200' r='150' stroke='white' stroke-opacity='0.05' stroke-width='2'/%3E%3Ccircle cx='200' cy='200' r='100' stroke='white' stroke-opacity='0.08' stroke-width='2'/%3E%3Ccircle cx='200' cy='200' r='50' stroke='white' stroke-opacity='0.1' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    background: linear-gradient(90deg, #58b5eb, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.testimonial-author {
    text-align: center;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #e2e8f0;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
}

.testimonial-company-logo {
    height: 28px;
    opacity: 0.6;
}

.testimonial-content {
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 120px;
    color: #0082cf;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.7;
    color: #334155;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

/* CTA Section */
.case-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0082cf 0%, #003859 100%);
    position: relative;
    overflow: hidden;
}

.case-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn-primary {
    padding: 18px 40px;
    background: #fff;
    color: #0082cf;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-case {
        grid-column: span 2;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-case {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .featured-case .case-card-image {
        min-height: 250px;
    }
    
    .testimonial-card {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ========== CASE STUDY DETAIL PAGE ========== */

/* Hero Section */
.case-detail-hero {
    background: linear-gradient(135deg, #003859 0%, #00629D 50%, #0082cf 100%);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.case-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.case-hero-content {
    position: relative;
    z-index: 1;
}

.case-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.case-back-link:hover {
    color: #fff;
}

.case-back-link svg {
    transition: transform 0.3s;
}

.case-back-link:hover svg {
    transform: translateX(-4px);
}

.case-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.case-detail-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
}

.case-detail-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 40px;
}

.case-hero-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.case-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-meta-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-meta-icon svg {
    width: 20px;
    height: 20px;
    color: #58b5eb;
}

.case-meta-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-meta-value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Client Logo Section */
.case-client-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.case-client-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.client-logo {
    height: 60px;
    max-width: 180px;
    object-fit: contain;
}

.client-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
}

.client-details p {
    font-size: 14px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.case-stats-row {
    display: flex;
    gap: 50px;
}

.case-stat-box {
    text-align: center;
    padding: 0 30px;
    border-left: 1px solid #e2e8f0;
}

.case-stat-box:first-child {
    border-left: none;
}

.case-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #0082cf;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.case-stat-text {
    font-size: 13px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    margin-top: 4px;
}

/* Main Content */
.case-content-section {
    padding: 80px 0;
}

.case-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
}

/* Article Content */
.case-article {
    max-width: 100%;
}

.case-section {
    margin-bottom: 60px;
}

.case-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.case-section-title::before {
    content: '';
    width: 4px;
    height: 32px;
    background: linear-gradient(180deg, #0082cf, #58b5eb);
    border-radius: 2px;
}

.case-article p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
}

.case-article ul {
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.case-article ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #475569;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.case-article ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* Challenge & Solution Cards */
.challenge-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.cs-card {
    padding: 32px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.cs-card.challenge {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
}

.cs-card.solution {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
}

.cs-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cs-card.challenge .cs-card-icon {
    background: #fecaca;
    color: #dc2626;
}

.cs-card.solution .cs-card-icon {
    background: #bbf7d0;
    color: #16a34a;
}

.cs-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.cs-card.challenge h4 {
    color: #991b1b;
}

.cs-card.solution h4 {
    color: #166534;
}

.cs-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.cs-card.challenge p {
    color: #7f1d1d;
}

.cs-card.solution p {
    color: #14532d;
}

/* Image Gallery */
.case-gallery {
    margin: 50px 0;
}

.case-main-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.case-gallery-thumbs {
    display: flex;
    gap: 12px;
}

.case-thumb {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.case-thumb:hover,
.case-thumb.active {
    opacity: 1;
    border-color: #0082cf;
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.result-card {
    background: linear-gradient(135deg, #003859 0%, #0082cf 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.result-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* Quote Block */
.case-quote {
    background: #f8fafc;
    border-left: 4px solid #0082cf;
    border-radius: 0 16px 16px 0;
    padding: 32px 40px;
    margin: 50px 0;
    position: relative;
}

.case-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: #0082cf;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.case-quote p {
    font-size: 20px;
    font-style: italic;
    color: #334155;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    margin-top: 12px;
}

.case-quote-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.case-quote-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.case-quote-name {
    font-size: 16px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Inter', sans-serif;
}

.case-quote-role {
    font-size: 13px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f1f5f9;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.tech-tag:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.tech-tag img {
    width: 20px;
    height: 20px;
}

/* Sidebar */
.case-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.sidebar-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

/* Project Info */
.project-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.project-info-item:last-child {
    border-bottom: none;
}

.project-info-label {
    font-size: 14px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.project-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    font-family: 'Inter', sans-serif;
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #475569;
    font-family: 'Inter', sans-serif;
}

.services-list li svg {
    width: 18px;
    height: 18px;
    color: #0082cf;
    flex-shrink: 0;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn.copy {
    background: #f1f5f9;
    color: #64748b;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* CTA Card */
.sidebar-cta {
    background: linear-gradient(135deg, #0082cf 0%, #003859 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    color: #fff;
}

.sidebar-cta h4 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
}

.sidebar-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
}

.sidebar-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #0082cf;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Timeline */
.project-timeline {
    position: relative;
    padding-left: 24px;
}

.project-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #0082cf;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #0082cf;
}

.timeline-date {
    font-size: 12px;
    color: #0082cf;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
}

.timeline-text {
    font-size: 14px;
    color: #475569;
    font-family: 'Inter', sans-serif;
}

/* Related Cases */
.related-cases-section {
    background: #f8fafc;
    padding: 80px 0;
}

.related-title {
    font-size: 36px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 50px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 130, 207, 0.15);
}

.related-card-image {
    height: 180px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.related-card:hover .related-card-image img {
    transform: scale(1.08);
}

.related-card-content {
    padding: 24px;
}

.related-card-category {
    font-size: 12px;
    color: #0082cf;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.related-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .case-content-grid {
        grid-template-columns: 1fr;
    }
    
    .case-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .sidebar-cta {
        grid-column: span 2;
    }
    
    .challenge-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-detail-title {
        font-size: 32px;
    }
    
    .case-hero-meta {
        flex-direction: column;
        gap: 20px;
    }
    
    .case-client-card {
        flex-direction: column;
        text-align: center;
    }
    
    .client-info {
        flex-direction: column;
    }
    
    .case-stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .case-stat-box {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding: 20px;
    }
    
    .case-stat-box:first-child {
        border-top: none;
    }
    
    .case-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar-cta {
        grid-column: span 1;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== ETKİNLİK VE DUYURULAR PAGE ========== */

/* Tab Navigation */
.content-tabs-section {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.content-tabs {
    display: flex;
    gap: 0;
}

.content-tab {
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #64748b;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.content-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.content-tab:hover {
    color: #0082cf;
}

.content-tab.active {
    color: #0082cf;
}

.content-tab.active::after {
    transform: scaleX(1);
}

.tab-icon {
    margin-right: 10px;
}

/* Filter Bar */
.filter-bar {
    background: #f8fafc;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-left {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #0082cf;
    color: #0082cf;
}

.filter-btn.active {
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    border-color: transparent;
    color: #fff;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 10px 20px;
    gap: 10px;
}

.search-box input {
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    width: 200px;
}

.search-box svg {
    color: #94a3b8;
    width: 18px;
    height: 18px;
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn svg {
    width: 18px;
    height: 18px;
    color: #64748b;
}

.view-btn.active {
    background: #0082cf;
    border-color: #0082cf;
}

.view-btn.active svg {
    color: #fff;
}

/* ========== ETKİNLİKLER SECTION ========== */
.events-section {
    padding: 60px 0;
}

/* Featured Event */
.featured-event {
    background: linear-gradient(135deg, #003859 0%, #0082cf 100%);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
}

.featured-event::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.featured-event-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}

.featured-event-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.featured-badge svg {
    width: 16px;
    height: 16px;
}

.featured-event-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-event-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin-bottom: 30px;
}

.featured-event-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.event-meta-item svg {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.featured-event-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: #0082cf;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s;
}

.featured-event-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-event-image {
    position: relative;
    min-height: 400px;
}

.featured-event-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-countdown {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.countdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Event Card */
.event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 130, 207, 0.15);
}

.event-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-card-image img {
    transform: scale(1.08);
}

.event-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-date-day {
    font-size: 28px;
    font-weight: 800;
    color: #0082cf;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    display: block;
}

.event-date-month {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.event-type-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.event-type-badge.online {
    background: #dcfce7;
    color: #16a34a;
}

.event-type-badge.offline {
    background: #dbeafe;
    color: #2563eb;
}

.event-type-badge.hybrid {
    background: #fef3c7;
    color: #d97706;
}

.event-card-content {
    padding: 24px;
}

.event-card-category {
    font-size: 12px;
    font-weight: 600;
    color: #0082cf;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.event-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.event-card:hover .event-card-title {
    color: #0082cf;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.event-card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.event-card-meta-item svg {
    width: 16px;
    height: 16px;
    color: #94a3b8;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.event-spots {
    font-size: 13px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.event-spots strong {
    color: #0082cf;
}

.event-card-btn {
    padding: 10px 20px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
}

.event-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 130, 207, 0.4);
}

/* Past Event Card */
.event-card.past {
    opacity: 0.75;
}

.event-card.past .event-card-image::after {
    content: 'Tamamlandı';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.event-card.past .event-card-btn {
    background: #94a3b8;
}

/* ========== DUYURULAR SECTION ========== */
.announcements-section {
    padding: 60px 0;
    display: none;
}

.announcements-section.active {
    display: block;
}

.events-section.active {
    display: block;
}

/* Announcement Card */
.announcement-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    display: flex;
    gap: 24px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.announcement-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 130, 207, 0.1);
    border-left-color: #0082cf;
}

.announcement-card.important {
    border-left-color: #ef4444;
    background: linear-gradient(90deg, #fef2f2 0%, #fff 10%);
}

.announcement-card.new {
    border-left-color: #22c55e;
}

.announcement-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.announcement-icon.update {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.announcement-icon.maintenance {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.announcement-icon.security {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
}

.announcement-icon.feature {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
}

.announcement-icon.info {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4f46e5;
}

.announcement-icon svg {
    width: 24px;
    height: 24px;
}

.announcement-content {
    flex: 1;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 16px;
}

.announcement-title {
    font-size: 18px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    transition: color 0.3s;
}

.announcement-card:hover .announcement-title {
    color: #0082cf;
}

.announcement-badges {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.announcement-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.announcement-badge.important {
    background: #fee2e2;
    color: #dc2626;
}

.announcement-badge.new {
    background: #dcfce7;
    color: #16a34a;
}

.announcement-desc {
    font-size: 15px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 16px;
}

.announcement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-meta {
    display: flex;
    gap: 20px;
}

.announcement-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
}

.announcement-meta-item svg {
    width: 14px;
    height: 14px;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #0082cf;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: gap 0.3s;
}

.announcement-link:hover {
    gap: 10px;
}

/* Calendar Widget */
.calendar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-title {
    font-size: 18px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-nav-btn:hover {
    background: #0082cf;
    border-color: #0082cf;
    color: #fff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar-day-name {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    padding: 8px 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #475569;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-day:hover {
    background: #f1f5f9;
}

.calendar-day.other-month {
    color: #cbd5e1;
}

.calendar-day.today {
    background: #0082cf;
    color: #fff;
    font-weight: 600;
}

.calendar-day.has-event {
    position: relative;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 6px;
    background: #0082cf;
    border-radius: 50%;
}

.calendar-day.today.has-event::after {
    background: #fff;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #0082cf 0%, #003859 100%);
    border-radius: 20px;
    padding: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.newsletter-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.newsletter-widget h4 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    position: relative;
}

.newsletter-widget p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    position: relative;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
}

.newsletter-form button {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #0082cf;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination {
    display: flex;
    gap: 8px;
}

.page-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    border-color: #0082cf;
    color: #0082cf;
}

.page-btn.active {
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    border-color: transparent;
    color: #fff;
}

.page-btn.arrow {
    color: #94a3b8;
}

.page-btn.arrow:hover {
    background: #f1f5f9;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-event-inner {
        grid-template-columns: 1fr;
    }
    
    .featured-event-image {
        min-height: 300px;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-tabs {
        overflow-x: auto;
    }
    
    .content-tab {
        padding: 16px 24px;
        white-space: nowrap;
    }
    
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-left {
        justify-content: center;
    }
    
    .filter-right {
        justify-content: center;
    }
    
    .featured-event-content {
        padding: 32px;
    }
    
    .featured-event-title {
        font-size: 26px;
    }
    
    .featured-event-meta {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-card {
        flex-direction: column;
        gap: 16px;
    }
    
    .announcement-header {
        flex-direction: column;
    }
    
    .announcement-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

  /* Hero Section */
        .detail-hero {
            background: linear-gradient(135deg, #003859 0%, #00629D 50%, #0082cf 100%);
            padding: 40px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .detail-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            text-decoration: none;
            margin-bottom: 30px;
            transition: color 0.3s;
        }

        .back-link:hover {
            color: #fff;
        }

        .category-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .detail-title {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            line-height: 1.2;
            margin-bottom: 20px;
            max-width: 900px;
        }

        .detail-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            max-width: 800px;
            margin-bottom: 40px;
        }

        .hero-meta {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .meta-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .meta-icon svg {
            width: 20px;
            height: 20px;
            color: #58b5eb;
        }

        .meta-info {
            display: flex;
            flex-direction: column;
        }

        .meta-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .meta-value {
            font-size: 16px;
            color: #fff;
            font-weight: 600;
        }

        /* Info Card */
        .info-card-section {
            margin-top: -60px;
            position: relative;
            z-index: 10;
            padding-bottom: 60px;
        }

        .info-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .info-stats {
            display: flex;
            gap: 50px;
        }

        .stat-box {
            text-align: center;
            padding: 0 30px;
            border-left: 1px solid #e2e8f0;
        }

        .stat-box:first-child {
            border-left: none;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: #0082cf;
            font-family: 'Poppins', sans-serif;
            line-height: 1;
        }

        .stat-text {
            font-size: 13px;
            color: #64748b;
            margin-top: 4px;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: linear-gradient(135deg, #dcfce7, #bbf7d0);
            border-radius: 50px;
            color: #16a34a;
            font-weight: 600;
            font-size: 15px;
        }

        .status-badge.closed {
            background: linear-gradient(135deg, #fee2e2, #fecaca);
            color: #dc2626;
        }

        /* Content Grid */
        .content-section {
            padding: 60px 0 100px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 60px;
        }

        /* Main Content */
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .content-section-title {
            font-size: 28px;
            font-weight: 700;
            color: #12567f;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .content-section-title::before {
            content: '';
            width: 4px;
            height: 32px;
            background: linear-gradient(180deg, #0082cf, #58b5eb);
            border-radius: 2px;
        }

        .content-text p {
            font-size: 17px;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 20px;
        }

        .content-text ul {
            margin: 24px 0;
            padding: 0;
            list-style: none;
        }

        .content-text ul li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 16px;
            font-size: 16px;
            color: #475569;
            line-height: 1.7;
        }

        .content-text ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, #0082cf, #58b5eb);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        /* Timeline */
        .etkinlik-timeline {
            margin: 40px 0;
        }

        .etkinlik-timeline-item {
            display: flex;
            gap: 24px;
            margin-bottom: 30px;
            position: relative;
        }

        .etkinlik-timeline-item::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 50px;
            bottom: -30px;
            width: 2px;
            background: #e2e8f0;
        }

        .etkinlik-timeline-item:last-child::before {
            display: none;
        }

        .etkinlik-timeline-time {
            width: 100px;
            flex-shrink: 0;
            padding-top: 8px;
        }

        .time-badge {
            display: inline-block;
            padding: 8px 16px;
            background: #f1f5f9;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            color: #0082cf;
        }

        .etkinlik-timeline-content {
            flex: 1;
            background: #f8fafc;
            border-radius: 16px;
            padding: 24px;
            border-left: 4px solid #0082cf;
        }

        .etkinlik-timeline-title {
            font-size: 18px;
            font-weight: 700;
            color: #12567f;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 8px;
        }

        .etkinlik-timeline-desc {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
        }

        /* Speaker Cards */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin: 30px 0;
        }

        .speaker-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 24px;
            display: flex;
            gap: 20px;
            align-items: center;
            transition: all 0.3s;
        }

        .speaker-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 130, 207, 0.15);
        }

        .speaker-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .speaker-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: #12567f;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 4px;
        }

        .speaker-role {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 8px;
        }

        .speaker-company {
            font-size: 13px;
            color: #94a3b8;
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-left: 4px solid #f59e0b;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 30px 0;
        }

        .highlight-box h4 {
            font-size: 18px;
            font-weight: 700;
            color: #92400e;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .highlight-box p {
            color: #78350f;
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin: 30px 0;
        }

        .gallery-item {
            aspect-ratio: 16/10;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            padding: 24px 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            color: #12567f;
            font-family: 'Poppins', sans-serif;
        }

        .faq-answer {
            margin-top: 16px;
            font-size: 15px;
            color: #64748b;
            line-height: 1.7;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* Sidebar */
        .icerik-sidebar {
            position: sticky;
            top: 100px;
        }

        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 24px;
        }

        .sidebar-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #12567f;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e2e8f0;
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
            font-size: 14px;
        }

        .info-list li:last-child {
            border-bottom: none;
        }

        .info-label {
            color: #64748b;
        }

        .info-value {
            font-weight: 600;
            color: #334155;
        }

        /* CTA Card */
        .cta-card {
            background: linear-gradient(135deg, #0082cf 0%, #003859 100%);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            color: #fff;
        }

        .cta-card h4 {
            font-size: 22px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 12px;
        }

        .cta-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: #fff;
            color: #0082cf;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* Share Buttons */
        .share-buttons {
            display: flex;
            gap: 12px;
        }

        .share-btn {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
            color: #fff;
        }

        .share-btn.linkedin {
            background: #0077b5;
        }

        .share-btn.twitter {
            background: #1da1f2;
        }

        .share-btn.facebook {
            background: #1877f2;
        }

        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Related Items */
        .related-section {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }

        .related-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 130, 207, 0.1);
        }

        .related-date {
            font-size: 12px;
            color: #0082cf;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .related-title {
            font-size: 16px;
            font-weight: 600;
            color: #12567f;
            font-family: 'Poppins', sans-serif;
            line-height: 1.4;
        }

        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
            margin: 50px 0;
        }

        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .cta-card {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .detail-title {
                font-size: 32px;
            }

            .hero-meta {
                flex-direction: column;
                gap: 20px;
            }

            .info-card {
                flex-direction: column;
            }

            .info-stats {
                flex-wrap: wrap;
                justify-content: center;
            }

            .main-content {
                padding: 30px 20px;
            }

            .speakers-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .icerik-sidebar {
                grid-template-columns: 1fr;
            }

            .cta-card {
                grid-column: span 1;
            }
        }


        /* Blog Kart Tasarımı */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(90deg, #0082cf, #58b5eb); /* Dosyanızdaki gradyan rengi */
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-title {
    font-family: 'Poppins', sans-serif; /* Temanızdaki ana font */
    font-weight: 600;
    font-size: 20px;
    color: #12567f; /* Temanızdaki koyu mavi */
}

.blog-link {
    color: #068bdb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #12567f;
}

/* Filtre Butonları */
.btn-filter {
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid #068bdb;
    color: #068bdb;
    transition: all 0.3s;
}

.btn-filter.active, .btn-filter:hover {
    background: #068bdb;
    color: #fff;
}

/* Pagination Genel Konteynırı */
.pagination {
    --pagination-bg: #ffffff;
    --pagination-border: #e2e8f0;
    --pagination-active-bg: linear-gradient(135deg, #0076c4 0%, #46a6e8 100%);
    --pagination-text: #475569;
    --pagination-active-text: #ffffff;
    --pagination-radius: 12px;
    gap: 8px !important; /* Sayılar arasındaki boşluk */
}

/* Sayfa Linkleri */
.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0;
    background-color: var(--pagination-bg);
    border: 1px solid var(--pagination-border);
    border-radius: var(--pagination-radius) !important;
    color: var(--pagination-text);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Hover (Üzerine Gelince) */
.pagination .page-link:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
    transform: translateY(-2px);
}

/* Aktif Sayfa */
.pagination .page-item.active .page-link {
    background: var(--pagination-active-bg) !important;
    border: none !important;
    color: var(--pagination-active-text) !important;
    box-shadow: 0 4px 12px rgba(0, 118, 196, 0.3);
}

/* Devre Dışı (Disabled) Butonlar */
.pagination .page-item.disabled .page-link {
    background-color: #f1f5f9;
    opacity: 0.6;
    cursor: not-allowed;
}

/* SVG Ok İkonlarının Rengi */
.pagination .page-link svg path {
    fill: #64748b; /* Pasif ok rengi */
    transition: fill 0.3s ease;
}

.pagination .page-link:hover svg path {
    fill: #0076c4; /* Hover ok rengi */
}

.pagination .page-item.active .page-link svg path {
    fill: #ffffff;
}

/* Mobil Uyumluluk */
@media (max-width: 576px) {
    .pagination .page-link {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    background: linear-gradient(135deg, #003859 0%, #00629D 50%, #0082cf 100%);
    padding: 40px 0 100px;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.blog-back-link:hover {
    color: #fff;
}

.blog-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.blog-detail-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    margin-bottom: 24px;
    max-width: 900px;
}

.blog-meta-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.blog-meta-item svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

/* Featured Image Section */
.blog-featured-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.blog-featured-image {
    background-color: #efefef;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Content Section */
.blog-content-section {
    padding: 60px 0 100px;
}

.blog-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

/* Article Content */
.blog-article {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-article p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.blog-article h2 {
    font-size: 32px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin: 50px 0 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-article h2::before {
    content: '';
    width: 4px;
    height: 36px;
    background: linear-gradient(180deg, #0082cf, #58b5eb);
    border-radius: 2px;
}

.blog-article h3 {
    font-size: 24px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin: 40px 0 20px 0;
}

.blog-article ul,
.blog-article ol {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.blog-article ul li,
.blog-article ol li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
}

.blog-article ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0082cf;
    font-weight: 700;
}

.blog-article ol {
    counter-reset: item;
}

.blog-article ol li {
    counter-increment: item;
}

.blog-article ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #0082cf;
    font-weight: 700;
}

.blog-article blockquote {
    background: #f8fafc;
    border-left: 4px solid #0082cf;
    border-radius: 0 12px 12px 0;
    padding: 24px 32px;
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
    color: #334155;
    position: relative;
}

.blog-article img {
    border-radius: 12px;
    margin: 30px 0;
}

.blog-article code {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 16px;
    color: #dc2626;
    font-family: 'Courier New', monospace;
}

.blog-article pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 30px 0;
}

.blog-article pre code {
    background: none;
    padding: 0;
    color: #e2e8f0;
}

/* Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.blog-tag {
    padding: 8px 18px;
    background: #f1f5f9;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-tag:hover {
    background: #0082cf;
    color: #fff;
    transform: translateY(-2px);
}

/* Share Section */
.blog-share-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    margin: 40px 0;
}

.share-text {
    font-size: 16px;
    font-weight: 600;
    color: #12567f;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    color: #fff;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Author Bio */
.author-bio {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    display: flex;
    gap: 24px;
    align-items: center;
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.author-bio-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.author-bio-role {
    font-size: 14px;
    color: #0082cf;
    font-weight: 600;
    margin-bottom: 12px;
}

.author-bio-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* Comments Section */
.comments-section {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comments-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.comments-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
}

.comments-count {
    padding: 6px 14px;
    background: #0082cf;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.no-comments {
    text-align: center;
    padding: 40px;
    color: #94a3b8;
    font-size: 16px;
}

/* Comment Item */
.comment-item {
    padding: 28px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.comment-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.comment-info {
    flex: 1;
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    color: #12567f;
    margin-bottom: 4px;
}

.comment-date {
    font-size: 13px;
    color: #94a3b8;
}

.comment-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

.comment-pending {
    display: inline-block;
    padding: 4px 12px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

/* Comment Form */
.comment-form-section {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comment-form-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 24px;
}

.comment-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0082cf;
    box-shadow: 0 0 0 3px rgba(0, 130, 207, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 4px;
}

.submit-btn {
    padding: 16px 40px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 130, 207, 0.3);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

/* Popular Posts */
.popular-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-post-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-post-content {
    flex: 1;
}

.popular-post-title {
    font-size: 14px;
    font-weight: 600;
    color: #12567f;
    line-height: 1.4;
    margin-bottom: 6px;
}

.popular-post-date {
    font-size: 12px;
    color: #94a3b8;
}

.popular-post:hover .popular-post-title {
    color: #0082cf;
}

/* Categories */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.category-list a:hover {
    background: #f1f5f9;
    color: #0082cf;
}

.category-count {
    padding: 2px 10px;
    background: #e2e8f0;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #0082cf 0%, #003859 100%);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    text-align: center;
}

.newsletter-widget h4 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
}

.newsletter-widget p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 12px;
}

.newsletter-form button {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #0082cf;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Related Posts */
.related-posts-section {
    padding: 80px 0;
    background: #f8fafc;
}

.related-posts-title {
    font-size: 36px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 50px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    text-decoration: none;
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 130, 207, 0.15);
}

.related-post-image {
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.08);
}

.related-post-content {
    padding: 24px;
}

.related-post-category {
    font-size: 12px;
    color: #0082cf;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.related-post-title {
    font-size: 18px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    margin-bottom: 12px;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-content-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .newsletter-widget {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 32px;
    }

    .blog-article {
        padding: 30px 20px;
    }

    .blog-article h2 {
        font-size: 24px;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .comments-section,
    .comment-form-section {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .newsletter-widget {
        grid-column: span 1;
    }
}