/**
 * @file home.css
 * @description Homepage styling for job listings sections with green theme and Swiper slider
 * @author Erdinç Taze
 * @copyright 
 */

/* ========== TEMEL RENK PALETİ ========== */
:root {
    --primary-green: #28a745;
    --primary-green-dark: #218838;
    --primary-green-light: #34ce57;
    --accent-green: #20c997;
    --accent-green-dark: #1ba085;
    --light-green: #d4edda;
    --very-light-green: #f8fffe;
    --success-green: #155724;
    --gradient-green: linear-gradient(135deg, #28a745, #20c997);
    --gradient-green-light: linear-gradient(135deg, #d4edda, #f8fffe);
}

/* ========== SECTION BAŞLIKLARI ========== */
.section-description {
    font-size: 16px;
    color: #6c757d;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-featured-section .wt-title,
.home-popular-section .wt-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--success-green);
    position: relative;
    margin-bottom: 0;
}

.home-featured-section .wt-title::after,
.home-popular-section .wt-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
}

/* ========== ÖNE ÇIKAN İŞ İLANLARI BÖLÜMÜ ========== */
.home-featured-section {
    padding: 50px 0 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}





/* ========== SWIPER SLIDER STİLLERİ ========== */
.featured-jobs-swiper {
    margin-top: 50px;
    padding-bottom: 50px;
    padding-top:50px;
}

.featured-company-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px 22px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    z-index: 3;
    width: 100%;
    overflow: hidden;
}

.featured-company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(40, 167, 69, 0.1);
}

.featured-company-card:hover::before {
    opacity: 1;
}

.featured-company-card .company-logo {
    width: 100%;
    height: 80px;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.featured-company-card .company-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-company-card:hover .company-logo::after {
    opacity: 1;
}

.featured-company-card .company-logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.featured-company-card:hover .company-logo img {
    transform: scale(1.05);
}

.featured-company-card .company-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.featured-company-card .company-info h5 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.featured-company-card:hover .company-info h5 {
    color: var(--primary-green);
}

.featured-company-card .company-info p.company-name {
    font-size: 13px;
    color: #666666;
    margin: 0 0 12px 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.featured-company-card:hover .company-info p.company-name {
    color: #333333;
}

/* Featured Job Meta Info */
.job-meta-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.job-meta-info .home-job-location,
.job-meta-info .home-job-type {
    font-size: 13px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(40, 167, 69, 0.08);
    border: none;
    transition: all 0.3s ease;
}

.job-meta-info .home-job-location:hover,
.job-meta-info .home-job-type:hover {
    background: rgba(40, 167, 69, 0.12);
    transform: translateX(2px);
}

.job-meta-info .home-job-location i,
.job-meta-info .home-job-type i {
    font-size: 12px;
    color: var(--primary-green);
    width: 16px;
    text-align: center;
}

.job-date {
    font-size: 12px;
    color: #888888;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 20px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.job-date:hover {
    background: #eeeeee;
    color: #666666;
}

.job-date i {
    font-size: 11px;
    color: var(--primary-green);
}

/* ========== SWIPER NAVIGATION ========== */
.featured-jobs-swiper .swiper-button-next,
.featured-jobs-swiper .swiper-button-prev {
    color: var(--primary-green);
    background: rgba(255, 255, 255, 0.7);
    width: 50px;
    height: 50px;
    margin-top: -25px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 237, 218, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.featured-jobs-swiper .swiper-button-next::after,
.featured-jobs-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.featured-jobs-swiper .swiper-button-next:hover,
.featured-jobs-swiper .swiper-button-prev:hover {
    background: rgba(40, 167, 69, 0.9);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.2);
    border: 2px solid rgba(40, 167, 69, 0.8);
}

.featured-jobs-swiper .swiper-button-next {
    right: 10px;
}

.featured-jobs-swiper .swiper-button-prev {
    left: 10px;
}

/* ========== SWIPER PAGINATION ========== */
.featured-jobs-swiper .swiper-pagination {
    bottom: 20px;
}

.featured-jobs-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--light-green);
    opacity: 1;
    transition: all 0.3s ease;
}

.featured-jobs-swiper .swiper-pagination-bullet-active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* ========== POPÜLER İŞ İLANLARI BÖLÜMÜ ========== */
.home-popular-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.popular-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.popular-company-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.popular-company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popular-company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(32, 201, 151, 0.1);
}

.popular-company-card:hover::before {
    opacity: 1;
}

.popular-company-card .company-logo {
    width: 100%;
    height: 90px;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.popular-company-card:hover .company-logo {
    transform: scale(1.05);
}

.popular-company-card .company-logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 12px;
}

.popular-company-card .company-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.popular-company-card .company-details h6 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.popular-company-card:hover .company-details h6 {
    color: var(--accent-green);
}

.popular-company-card .company-details p.company-name {
    font-size: 13px;
    color: #666666;
    margin: 0 0 12px 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.popular-company-card:hover .company-details p.company-name {
    color: #333333;
}

/* Popular Job Info Compact */
.popular-company-card .company-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.job-info-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.job-info-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.job-info-compact .home-location-compact,
.job-info-compact .home-type-compact {
    font-size: 12px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(32, 201, 151, 0.08);
    border: none;
    transition: all 0.3s ease;
}

.job-info-compact .home-location-compact:hover,
.job-info-compact .home-type-compact:hover {
    background: rgba(32, 201, 151, 0.12);
    transform: translateX(2px);
}

.job-info-compact .home-location-compact i,
.job-info-compact .home-type-compact i {
    font-size: 11px;
    color: var(--accent-green);
    width: 14px;
    text-align: center;
}

/* ========== ACİL VE YENİ İŞ İLANLARI BÖLÜMÜ ========== */
.home-job-lists-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.job-list-container {
    background: #ffffff;
    border: 2px solid var(--light-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.job-list-container:hover {
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
    transform: translateY(-2px);
}

.job-list-header {
    padding: 25px 30px 20px;
    background: var(--gradient-green-light);
    border-bottom: 2px solid var(--light-green);
    position: relative;
}

.job-list-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
}

.job-list-title-section {
    margin-bottom: 15px;
}

.job-list-title-section .wt-small-separator {
    margin-bottom: 8px;
}

.job-list-title-section .wt-small-separator div {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-list-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--success-green);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
}

.job-list-header h3::before {
    content: '●';
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 16px;
}

.job-list-description {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.header-underline {
    height: 4px;
    width: 80px;
    border-radius: 2px;
    background: var(--gradient-green);
}

.header-underline.urgent {
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
}

.header-underline.new {
    background: linear-gradient(90deg, var(--accent-green), var(--accent-green-dark));
}

.job-list-content {
    padding: 0;
}

.job-list-item {
    padding: 25px 30px;
    border-bottom: 1px solid var(--light-green);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.job-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.job-list-item:hover::before {
    transform: scaleY(1);
}

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

.job-list-item:hover {
    background: var(--very-light-green);
    transform: translateX(8px);
}

.job-list-item .job-info {
    flex: 1;
}

.job-list-item .job-info h5 {
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.job-list-item:hover .job-info h5 {
    color: var(--primary-green);
}

.job-list-item .job-info .company-name {
    font-size: 15px;
    color: var(--accent-green);
    margin: 0 0 8px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-list-item:hover .job-info .company-name {
    color: var(--primary-green-dark);
}

.job-list-item .job-info .home-job-location {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
}

.job-list-item .job-info .home-job-location::before {
    content: '📍';
    margin-right: 5px;
}

.job-list-item .job-meta {
    text-align: right;
}

.job-list-item .job-meta .job-date {
    font-size: 12px;
    color: var(--success-green);
    background: var(--light-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-list-item:hover .job-meta .job-date {
    background: var(--primary-green);
    color: #ffffff;
    transform: scale(1.05);
}

.job-list-footer {
    padding: 25px 30px;
    text-align: center;
    background: var(--very-light-green);
    border-top: 2px solid var(--light-green);
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn.urgent {
    background: var(--gradient-green);
    color: #ffffff;
    border: 2px solid var(--primary-green);
}

.view-all-btn.urgent:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.view-all-btn.new {
    background: linear-gradient(45deg, var(--accent-green), var(--accent-green-dark));
    color: #ffffff;
    border: 2px solid var(--accent-green);
}

.view-all-btn.new:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* ========== RESPONSIVE TASARIM ========== */
@media (max-width: 992px) {
    .popular-companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .home-featured-section,
    .home-popular-section,
    .home-job-lists-section,
    .info-section {
        padding: 10px 0;
    }
    
    .info-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .info-section .wt-title {
        font-size: 24px;
    }
    
    .main-description {
        font-size: 15px;
        text-align: left;
    }
    
    .feature-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-content h5 {
        font-size: 15px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    .stats-section {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .stats-header h3 {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-item {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .call-to-action {
        padding: 20px 15px;
    }
    
    .call-to-action h4 {
        font-size: 16px;
    }
    
    .featured-jobs-swiper {
        margin-top: 0;
        padding-top: 5px;
    }

    
    .featured-jobs-swiper .swiper-button-next,
    .featured-jobs-swiper .swiper-button-prev {
        display: none;
    }
    
    .featured-company-card {
        min-height: 160px;
        padding: 16px 18px;
    }
    
    .featured-company-card .company-logo {
        width: 72px;
        height: 72px;
        margin-bottom: 14px;
    }
    
    .featured-company-card .company-info h5 {
        font-size: 14px;
    }
    
    .featured-company-card .company-info p.company-name {
        font-size: 12px;
    }
    
    .job-meta-info .home-job-location,
    .job-meta-info .home-job-type {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .job-date {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .popular-companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
        margin-top: 30px;
    }
    
    .popular-company-card {
        min-height: 140px;
        padding: 16px 18px;
    }
    
    .popular-company-card .company-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .popular-company-card .company-details h6 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .popular-company-card .company-details p.company-name {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .job-info-compact .home-location-compact,
    .job-info-compact .home-type-compact {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .job-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 25px;
    }
    
    .job-list-item .job-meta {
        margin-top: 15px;
        width: 100%;
        text-align: left;
    }
    
    .job-list-header,
    .job-list-footer {
        padding: 20px 25px;
    }
    
    .job-list-header h3 {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 15px;
        margin-top: 12px;
    }
}

@media (max-width: 576px) {
    .popular-companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .featured-company-card {
        padding: 18px 12px;
    }
    
    .popular-company-card {
        padding: 22px 18px;
        height: auto;
    }
    
    .popular-company-card .company-details h6 {
        font-size: 14px;
        height: auto;
        margin-bottom: 8px;
    }
    
    .popular-company-card .company-details p.company-name {
        font-size: 12px;
        height: 20px;
        margin-bottom: 10px;
    }
    
    .job-info-compact .home-location-compact,
    .job-info-compact .home-type-compact {
        font-size: 10px;
        padding: 4px 7px;
        height: 24px;
    }
    
    .view-all-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .home-featured-section .wt-title,
    .home-popular-section .wt-title {
        font-size: 26px;
    }
}

/* ========== HOVER EFEKTLERİ VE ANİMASYONLAR ========== */
.featured-company-card,
.popular-company-card,
.job-list-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== TEMİZ HOVER EFEKTLERİ ========== */

/* ========== PLATFORM BİLGİ BÖLÜMÜ ========== */
.info-section {
    padding:0;
    position: relative;
    overflow: hidden;
}


.info-content {
    position: relative;
    z-index: 3;
    padding-right: 30px;
}

.info-section .wt-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 25px;
    line-height: 1.3;
}

.main-description {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 35px;
    text-align: justify;
}

.main-description strong {
    color: var(--primary-green);
    font-weight: 700;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.feature-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* EK BİLGİ BLOKLARI */
.info-blocks {
    margin-top: 40px;
}

.info-block {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(40, 167, 69, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
    border-color: var(--primary-green);
}

.info-block-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.info-block-header i {
    font-size: 24px;
    color: var(--primary-green);
}

.info-block-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--success-green);
    margin: 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4a5568;
}

.info-list li i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 12px;
}

.steps-guide {
    margin-top: 15px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 3px;
}

.step-content p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

/* SAĞ KOLON - İSTATİSTİKLER (KOMPAKT) */
.stats-section {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stats-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-green);
}

.stats-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 5px;
}

.stats-header p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: var(--very-light-green);
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
    border-color: var(--primary-green);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.stat-number .plus {
    font-size: 20px;
    color: var(--accent-green);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 3px;
}

.stat-description {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
}

/* CTA BUTTON */
.call-to-action {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 20px;
    background: var(--gradient-green-light);
    border-radius: 12px;
    border: 2px solid var(--light-green);
}

.call-to-action h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 8px;
}

.call-to-action p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gradient-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.cta-button i {
    margin-right: 8px;
}

/* BAŞARI HİKAYELERİ SLIDER */
.success-stories {
    padding-top: 20px;
    border-top: 2px solid var(--light-green);
    min-height: 250px;
    position: relative;
}

.success-stories h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 20px;
    text-align: center;
}

/* Swiper slide görünürlük - Normal slide effect için */

.story-item {
    padding: 20px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.story-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
    background: rgba(40, 167, 69, 0.08);
}

.story-quote {
    font-size: 13px;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
    flex: 1;
}

.story-quote i {
    color: var(--primary-green);
    margin-right: 5px;
    font-size: 14px;
}

.story-author {
    font-size: 12px;
    color: var(--accent-green);
    font-weight: 600;
    text-align: right;
    margin-bottom: 8px;
}

.story-rating {
    text-align: right;
    margin-top: 5px;
}

.story-rating i {
    color: #ffc107;
    font-size: 12px;
    margin-left: 2px;
}

.testimonials-pagination {
    bottom: -20px !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    text-align: center;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--light-green);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
    display: inline-block;
}

.testimonials-pagination .swiper-pagination-bullet:hover {
    background: var(--accent-green);
    transform: scale(1.1);
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary-green);
    transform: scale(1.3);
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
}
/* Fallback testimonials stilleri */
.fallback-testimonials {
    position: relative !important;
    overflow: visible !important;
    min-height: 180px;
    width: 100%;
    padding-bottom: 40px;
}

.fallback-testimonials .swiper-wrapper {
    position: relative !important;
    display: block !important;
    transform: none !important;
    height: auto !important;
    width: 100%;
    min-height: 150px;
}

.fallback-testimonials .swiper-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    opacity: 0;
    transition: opacity 0.5s ease-in-out !important;
    display: none !important;
    z-index: 1;
}

.fallback-testimonials .swiper-slide.active {
    position: relative !important;
    opacity: 1 !important;
    display: block !important;
    z-index: 2;
}

.fallback-testimonials .swiper-slide.active .story-item {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper olmadığında basit gösterim */
.no-swiper .testimonials-swiper {
    position: relative;
    overflow: hidden;
}

.no-swiper .testimonials-swiper .swiper-wrapper {
    position: relative;
}

.no-swiper .testimonials-swiper .swiper-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.no-swiper .testimonials-swiper .swiper-slide.active {
    position: relative;
    opacity: 1;
}

/* ========== ACCESSIBILITY ========== */
.featured-company-card:focus,
.popular-company-card:focus,
.job-list-item:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

.view-all-btn:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

/* ========== MODERN KATEGORİ BÖLÜMÜ ========== */
.modern-categories-section {
    padding:20px 0;
    position: relative;
    overflow: hidden;
}



.modern-categories-section .container {
    position: relative;
    z-index: 2;
}

.modern-categories-section .wt-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 15px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-column {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.08);
    border: 2px solid rgba(40, 167, 69, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.category-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.15);
    border-color: var(--primary-green);
}

.category-column:hover::before {
    transform: scaleX(1);
}

.category-header {
    padding: 30px 25px 25px;
    text-align: center;
    background: var(--gradient-green-light);
    border-bottom: 1px solid rgba(40, 167, 69, 0.1);
    position: relative;
}

.modern-category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.category-column:hover .modern-category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.category-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 8px;
    line-height: 1.3;
}

.category-header p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    font-weight: 500;
}

.category-links {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-link {
    display: block;
    padding: 5px 10px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
}

.category-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-link:hover {
    background: rgba(40, 167, 69, 0.08);
    color: var(--primary-green);
    transform: translateX(8px);
    text-decoration: none;
    border-left-color: var(--primary-green);
}

.category-link:hover::before {
    transform: scaleY(1);
}

.category-link:active {
    transform: translateX(4px);
    background: rgba(40, 167, 69, 0.12);
}

.category-footer {
    padding: 20px 25px 25px;
    text-align: center;
    background: rgba(40, 167, 69, 0.02);
    border-top: 1px solid rgba(40, 167, 69, 0.1);
}

.view-all-category {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gradient-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    position: relative;
    overflow: hidden;
}

.view-all-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.view-all-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.view-all-category:hover::before {
    left: 100%;
}

.view-all-category:active {
    transform: translateY(0);
}

/* ========== RESPONSIVE TASARIM - MODERN KATEGORİLER ========== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .modern-categories-section {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .category-header {
        padding: 25px 20px 20px;
    }
    
    .modern-category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .category-header h3 {
        font-size: 18px;
    }
    
    .category-links {
        padding: 15px 20px;
    }
    
    .category-footer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 768px) {
    .modern-categories-section {
        padding: 50px 0;
    }
    
    .modern-categories-section .wt-title {
        font-size: 28px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }
    
    .category-column {
        margin-bottom: 10px;
    }
    
    .category-header {
        padding: 20px 15px 15px;
    }
    
    .modern-category-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .category-header h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .category-header p {
        font-size: 13px;
    }
    
    .category-links {
        padding: 12px 15px;
        gap: 1px;
    }
    
    .category-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .category-footer {
        padding: 12px 15px 15px;
    }
    
    .view-all-category {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .modern-categories-section {
        padding: 40px 0;
    }
    
    .modern-categories-section .section-description {
        font-size: 15px;
    }
    
    .category-header {
        padding: 18px 12px 12px;
    }
    
    .category-links {
        padding: 10px 12px;
    }
    
    .category-link {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .category-footer {
        padding: 10px 12px 12px;
    }
}

/* ========== MODERN KATEGORİ ANİMASYONLARI ========== */
.category-column {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.category-column:nth-child(1) { animation-delay: 0.1s; }
.category-column:nth-child(2) { animation-delay: 0.2s; }
.category-column:nth-child(3) { animation-delay: 0.3s; }
.category-column:nth-child(4) { animation-delay: 0.4s; }

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

/* Hover efektleri için ek animasyonlar */
.category-link {
    position: relative;
}

.category-link::after {
    content: '→';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-green);
    font-weight: bold;
}

.category-link:hover::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

/* ========== ACCESSIBILITY VE FOCUS STATEs ========== */
.category-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
    background: rgba(40, 167, 69, 0.08);
}

.view-all-category:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* ========== EĞİTİM İÇERİKLERİ BÖLÜMÜ ========== */
.education-content-section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.education-content-section .container {
    position: relative;
    z-index: 2;
}

.education-content-section .wt-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 15px;
}

.education-content-grid {
    margin-top: 50px;
}

.education-content-grid .row {
    margin-bottom: 0;
}

.education-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 25px;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.education-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.15);
    border-color: var(--primary-green);
}

.education-card:hover::before {
    transform: scaleX(1);
}

.education-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(40, 167, 69, 0.1);
}

.education-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.education-card:hover .education-card-image img {
    transform: scale(1.05);
}

.education-category {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: var(--primary-green);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 3;
}

.education-category.popular {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    animation: popularPulse 1.5s ease-in-out infinite;
}

.education-category.new {
    background: linear-gradient(45deg, #3498db, #2980b9);
    animation: newPulse 2s ease-in-out infinite;
}

.education-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    max-height: 215px;
}

.education-card-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 32px;
    max-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.education-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.education-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(40, 167, 69, 0.1);
}

.education-views,
.education-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666666;
    font-weight: 500;
}

.education-views i,
.education-date i {
    color: var(--primary-green);
    font-size: 11px;
}

.education-card-footer {
    padding: 20px 25px 25px;
    background: rgba(40, 167, 69, 0.02);
    border-top: 1px solid rgba(40, 167, 69, 0.1);
}

.education-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.education-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.education-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.education-btn:hover::before {
    left: 100%;
}

.education-btn.premium {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.education-btn.premium:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.education-btn i {
    margin-right: 8px;
}

/* CTA Section */
.education-cta-section {
    margin-top: 60px;
    text-align: center;
    padding: 50px 30px;
    background: var(--gradient-green-light);
    border-radius: 20px;
    border: 2px solid rgba(40, 167, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.education-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
}

.education-cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 15px;
}

.education-cta-content p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.education-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
    position: relative;
    overflow: hidden;
}

.education-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.education-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.education-cta-btn:hover::before {
    left: 100%;
}

.education-cta-btn i {
    margin-right: 10px;
    font-size: 18px;
}

/* Animasyonlar */
@keyframes educationBgFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(10px, -10px) scale(1.05);
    }
    66% {
        transform: translate(-5px, 5px) scale(0.95);
    }
}

@keyframes popularPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
    }
}

@keyframes newPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(52, 152, 219, 0);
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .education-content-grid .row {
        margin-bottom: 0;
    }
    
    .education-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .education-content-section {
        padding: 60px 0;
    }
    
    .education-content-section .wt-title {
        font-size: 28px;
    }
    
    .education-content-grid {
        margin-top: 40px;
    }
    
    .education-card-image {
        height: 180px;
    }
    
    .education-card-content {
        padding: 20px;
        min-height: 180px;
        max-height: 200px;
    }
    
    .education-card-content h4 {
        font-size: 16px;
        min-height: 30px;
        max-height: 42px;
    }
    
    .education-cta-section {
        margin-top: 40px;
        padding: 40px 25px;
    }
    
    .education-cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .education-content-section {
        padding: 50px 0;
    }
    
    .education-content-section .wt-title {
        font-size: 26px;
    }
    
    .education-content-grid {
        margin-top: 35px;
    }
    
    .education-content-grid .row {
        margin-bottom: 0;
    }
    
    .education-card {
        margin-bottom: 20px;
    }
    
    .education-card-image {
        height: 160px;
    }
    
    .education-category {
        padding: 5px 10px;
        font-size: 10px;
        top: 12px;
        right: 12px;
    }
    
    .education-card-content {
        padding: 18px;
        min-height: 160px;
        max-height: 180px;
    }
    
    .education-card-content h4 {
        font-size: 15px;
        min-height: 28px;
        max-height: 38px;
        margin-bottom: 10px;
    }
    
    .education-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .education-meta {
        padding-top: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .education-views,
    .education-date {
        font-size: 11px;
    }
    
    .education-card-footer {
        padding: 15px 18px 18px;
    }
    
    .education-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .education-cta-section {
        margin-top: 35px;
        padding: 30px 20px;
    }
    
    .education-cta-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .education-cta-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .education-cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .education-content-section {
        padding: 40px 0;
    }
    
    .education-card-image {
        height: 140px;
    }
    
    .education-card-content {
        padding: 15px;
        min-height: 140px;
        max-height: 160px;
    }
    
    .education-card-content h4 {
        font-size: 14px;
        min-height: 26px;
        max-height: 35px;
    }
    
    .education-description {
        font-size: 12px;
    }
    
    .education-card-footer {
        padding: 12px 15px 15px;
    }
    
    .education-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .education-cta-section {
        padding: 25px 15px;
    }
    
    .education-cta-content h3 {
        font-size: 20px;
    }
    
    .education-cta-content p {
        font-size: 14px;
    }
    
    .education-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Accessibility */
.education-card:focus,
.education-btn:focus,
.education-cta-btn:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Loading States */
.education-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.education-card.loading .education-card-content {
    background: linear-gradient(90deg, var(--light-green) 25%, var(--very-light-green) 50%, var(--light-green) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Hover efektleri için ek animasyonlar */
.education-card .education-meta span {
    transition: all 0.3s ease;
}

.education-card:hover .education-meta span {
    color: var(--primary-green);
}

.education-card:hover .education-description {
    color: #555555;
}

/* ========== ANİMASYON VE EFEKTLER ========== */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

.pulse-green {
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.float-animation {
    animation: floatGreen 3s ease-in-out;
}

@keyframes floatGreen {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.click-glow {
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.6) !important;
}

.touch-active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    pointer-events: none;
}

.ripple.animate {
    animation: rippleEffect 0.6s linear;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.company-logo img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-logo img.loaded {
    opacity: 1;
}

.company-logo img.error-fallback {
    filter: grayscale(1);
    opacity: 0.7;
}

.job-info h5,
.company-info h5,
.company-details h6,
.company-name,
.job-date {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Eğitim içerikleri için ek animasyonlar */
.education-card.dimmed {
    opacity: 0.6;
    transform: scale(0.98);
}

.education-card.touch-active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
}

.education-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    pointer-events: none;
    z-index: 1;
}

.education-ripple.animate {
    animation: educationRippleEffect 0.6s linear;
}

@keyframes educationRippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.education-cta-btn.glow-effect {
    box-shadow: 0 0 30px rgba(40, 167, 69, 0.6) !important;
    transform: translateY(-3px) scale(1.02) !important;
}

.bounce-animation {
    animation: bounceEducation 1s ease-in-out;
}

@keyframes bounceEducation {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    80% {
        transform: translateY(-4px);
    }
}

.education-icon.pulse-animation {
    animation: pulseEducationIcon 1.5s ease-in-out;
}

@keyframes pulseEducationIcon {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(5deg);
    }
}

.education-card.animate-in {
    animation: slideInUpEducation 0.6s ease-out forwards;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes slideInUpEducation {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modern kategoriler için ek animasyonlar */
.category-link.dimmed {
    opacity: 0.5;
    transform: translateX(0);
}

.pulse-animation {
    animation: pulseIcon 2s ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.category-column.touch-active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
}

.link-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.3);
    transform: scale(0);
    pointer-events: none;
    z-index: 1;
}

.link-ripple.animate {
    animation: linkRippleEffect 0.6s linear;
}

@keyframes linkRippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Swiper fallback stilleri */
.fallback-grid {
    display: block !important;
}

.fallback-wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 25px !important;
    transform: none !important;
}

.fallback-slide {
    width: auto !important;
    margin-right: 0 !important;
}

@media (max-width: 768px) {
    .fallback-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
        gap: 15px !important;
    }
}

/* ========== EĞİTİM ANA BUTON STİLLERİ (KÜÇÜK BOYUT) ========== */
.education-cta-wrapper {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    position: relative;
}

.education-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 220px;
    justify-content: center;
}

.education-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.education-main-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: #ffffff;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.education-main-btn:hover::before {
    left: 100%;
}

.education-main-btn:active {
    transform: translateY(-1px) scale(0.99);
    transition: transform 0.1s ease;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 13px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.education-main-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(10deg);
}

.btn-text {
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.education-main-btn:hover .btn-text {
    letter-spacing: 0.5px;
}

.btn-arrow {
    display: flex;
    align-items: center;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.education-main-btn:hover .btn-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .education-cta-wrapper {
        margin-top: 30px;
        padding: 15px 0;
    }
    
    .education-main-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 200px;
        gap: 8px;
    }
    
    .btn-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .education-main-btn {
        padding: 8px 18px;
        font-size: 12px;
        min-width: 180px;
        gap: 6px;
    }
    
    .btn-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .btn-text {
        font-size: 12px;
    }
    
    .btn-arrow {
        font-size: 10px;
    }
}

/* Focus state for accessibility */
.education-main-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Loading state */
.education-main-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.education-main-btn.loading .btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pulse animation for attention */
.education-main-btn.pulse {
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    }
}

/* ========== SCROLLBAR STYLİNG ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-green);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

/* ========== LOADER ANİMASYONU ========== */
.loading-shimmer {
    background: linear-gradient(90deg, var(--light-green) 25%, var(--very-light-green) 50%, var(--light-green) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ========== PATTERN ANİMASYONLARI ========== */



@keyframes patternFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(1deg);
    }
    50% {
        transform: translate(-5px, 5px) rotate(-1deg);
    }
    75% {
        transform: translate(-10px, -5px) rotate(0.5deg);
    }
}

@keyframes patternSlide {
    0% {
        background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    }
    100% {
        background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px;
    }
}

@keyframes patternPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ========== DUYURULAR SLIDER BÖLÜMÜ ========== */
.announcements-slider-section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}


.announcements-slider-section .container {
    position: relative;
    z-index: 2;
}

.announcements-slider-section .wt-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 15px;
}

.announcements-slider-wrapper {
    margin-top: 45px;
    position: relative;
    z-index: 3;
}

.announcements-swiper {
    position: relative;
    padding: 20px 0 60px 0;
}

.announcements-swiper .swiper-container {
    overflow: visible;
}

.announcements-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Swiper başlatılmadan önce kartların düzgün görünmesi için */


/* Responsive grid for non-initialized swiper */
@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

@media (max-width: 576px) {
}

/* Duyuru Kartları - Yatay Minimal Tasarım */
.announcement-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.06);
    border: 1px solid rgba(40, 167, 69, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    display: flex;
    flex-direction: row;
    position: relative;
    cursor: pointer;
    min-height: 160px;
}

.announcement-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.announcement-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.08);
    border-color: rgba(40, 167, 69, 0.12);
}

.announcement-card:hover::before {
    transform: scaleY(1);
}

/* Duyuru Görseli - Kompakt Sol Taraf */
.announcement-image {
    position: relative;
    width: 120px;
    min-width: 120px;
    height: 100%;
    overflow: hidden;
    border-right: 1px solid rgba(40, 167, 69, 0.06);
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.announcement-card:hover .announcement-image img {
    transform: scale(1.02);
}

/* Duyuru Badge'leri - Minimal */
.announcement-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 1px 5px;
    border-radius: 6px;
    font-size: 7px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: #ffffff;
    z-index: 3;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.announcement-badge.new {
    background: var(--primary-green);
}

.announcement-badge.hot {
    background: #e74c3c;
}

.announcement-badge.info {
    background: #3498db;
}

.announcement-badge.event {
    background: #9b59b6;
}

/* Duyuru İçeriği - Sağ Taraf */
.announcement-content {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
}

.announcement-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.announcement-card:hover .announcement-content h4 {
    color: var(--primary-green);
}

.announcement-description {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Meta Bilgiler - Kompakt */
.announcement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.announcement-date,
.announcement-category {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #888888;
    font-weight: 500;
}

.announcement-date i,
.announcement-category i {
    color: var(--primary-green);
    font-size: 10px;
}

/* Duyuru Butonu */
.announcement-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gradient-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    margin-top: auto;
}

.announcement-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.announcement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.announcement-btn:hover::before {
    left: 100%;
}

.announcement-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.announcement-btn:hover i {
    transform: translateX(3px);
}

/* Swiper Navigation */
.announcements-swiper .swiper-button-next,
.announcements-swiper .swiper-button-prev {
    color: var(--primary-green);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    margin-top: -25px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 237, 218, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.announcements-swiper .swiper-button-next::after,
.announcements-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.announcements-swiper .swiper-button-next:hover,
.announcements-swiper .swiper-button-prev:hover {
    background: rgba(40, 167, 69, 0.9);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.2);
    border: 2px solid rgba(40, 167, 69, 0.8);
}

.announcements-swiper .swiper-button-next {
    right: 10px;
}

.announcements-swiper .swiper-button-prev {
    left: 10px;
}

/* Swiper Pagination */
.announcements-swiper .swiper-pagination {
    bottom: 15px;
}

.announcements-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--light-green);
    opacity: 1;
    transition: all 0.3s ease;
}

.announcements-swiper .swiper-pagination-bullet-active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* CTA Wrapper */
.announcements-cta-wrapper {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    position: relative;
}

.announcements-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.announcements-view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.announcements-view-all-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: #ffffff;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.announcements-view-all-btn:hover::before {
    left: 100%;
}

.announcements-view-all-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 13px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.announcements-view-all-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(10deg);
}

.announcements-view-all-btn .btn-text {
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.announcements-view-all-btn:hover .btn-text {
    letter-spacing: 0.5px;
}

.announcements-view-all-btn .btn-arrow {
    display: flex;
    align-items: center;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.announcements-view-all-btn:hover .btn-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* Animasyonlar */
@keyframes announcementBgFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(15px, -10px) scale(1.05);
    }
    66% {
        transform: translate(-10px, 8px) scale(0.95);
    }
}

@keyframes newBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
    }
}

@keyframes hotBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.5);
    }
}

@keyframes eventBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(155, 89, 182, 0.5);
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .announcement-image {
        height: 160px;
    }
    
    .announcement-content {
        padding: 20px;
        min-height: 180px;
    }
}

@media (max-width: 992px) {
    .announcements-slider-section {
        padding: 60px 0;
    }
    
    .announcements-slider-section .wt-title {
        font-size: 28px;
    }
    
    .announcements-slider-wrapper {
        margin-top: 35px;
    }
    
    .announcement-image {
        height: 150px;
    }
    
    .announcement-content {
        padding: 18px;
        min-height: 160px;
    }
    
    .announcement-content h4 {
        font-size: 16px;
        min-height: 42px;
    }
    
    .announcements-cta-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .announcements-slider-section {
        padding: 50px 0;
    }
    
    .announcements-slider-section .wt-title {
        font-size: 26px;
    }
    
    .announcements-slider-wrapper {
        margin-top: 30px;
    }
    
    .announcements-swiper {
        padding: 15px 0 50px 0;
    }
    
    .announcements-swiper .swiper-button-next,
    .announcements-swiper .swiper-button-prev {
        display: none;
    }
    
    /* Mobil tarafta kartları daha kompakt yapalım */
    .announcement-card {
        min-height: 120px;
        flex-direction: column;
    }
    
    .announcement-image {
        width: 100%;
        height: 100px;
        min-width: auto;
        border-right: none;
        border-bottom: 1px solid rgba(40, 167, 69, 0.06);
    }
    
    .announcement-badge {
        padding: 3px 8px;
        font-size: 9px;
        top: 8px;
        right: 8px;
    }
    
    .announcement-content {
        padding: 12px 14px;
        min-height: auto;
        flex: none;
    }
    
    .announcement-content h4 {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 6px;
        -webkit-line-clamp: 1;
    }
    
    .announcement-description {
        font-size: 12px;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
    }
    
    .announcement-meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .announcement-date,
    .announcement-category {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .announcement-btn {
        padding: 6px 12px;
        font-size: 11px;
        margin-top: 0;
    }
    
    .announcements-view-all-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 180px;
        gap: 8px;
    }
    
    .announcements-view-all-btn .btn-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .announcements-slider-section {
        padding: 40px 0;
    }
    
    /* Çok küçük ekranlarda daha da kompakt */
    .announcement-card {
        min-height: 110px;
    }
    
    .announcement-image {
        height: 80px;
    }
    
    .announcement-content {
        padding: 10px 12px;
        min-height: auto;
    }
    
    .announcement-content h4 {
        font-size: 13px;
        min-height: auto;
        margin-bottom: 4px;
    }
    
    .announcement-description {
        font-size: 11px;
        margin-bottom: 6px;
        -webkit-line-clamp: 1;
    }
    
    .announcement-meta {
        margin-bottom: 6px;
    }
    
    .announcement-date,
    .announcement-category {
        font-size: 9px;
        padding: 1px 4px;
    }
    
    .announcement-btn {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .announcements-view-all-btn {
        padding: 8px 18px;
        font-size: 12px;
        min-width: 160px;
        gap: 6px;
    }
    
    .announcements-view-all-btn .btn-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

/* Accessibility */
.announcement-card:focus,
.announcement-btn:focus,
.announcements-view-all-btn:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Loading States */
.announcement-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.announcement-card.loading .announcement-content {
    background: linear-gradient(90deg, var(--light-green) 25%, var(--very-light-green) 50%, var(--light-green) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Touch optimizations */
.announcement-card.touch-active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
}

.announcement-btn.touch-active,
.announcements-view-all-btn.touch-active {
    transform: scale(0.95) !important;
}

/* Hover efektleri için ek animasyonlar */
.announcement-card:hover .announcement-meta span {
    color: var(--primary-green);
}

.announcement-card:hover .announcement-description {
    color: #555555;
}

/* Dark mode uyumluluğu için hazırlık */
@media (prefers-color-scheme: dark) {
    .announcement-card {
        background: rgba(255, 255, 255, 0.95);
    }
}

/* ========== DUYURULAR SLIDER BÖLÜMÜ SON ========== */




