
    /* Modern Header Styles */
    .modern-header {
        position: relative;
        margin-bottom: 4rem;
    }
    
    .header-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #0e7db8, #1e88e5);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(14, 125, 184, 0.3);
        animation: fadeInUp 0.6s ease-out;
    }
    
    .header-badge i {
        font-size: 16px;
    }
    
    .modern-title {
        font-family: 'Inter', 'Poppins', sans-serif;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        color: #2c3e50;
        margin: 0;
        line-height: 1.2;
        letter-spacing: -1px;
        animation: fadeInUp 0.6s ease-out 0.2s both;
    }
    
    .highlight-word {
        background: linear-gradient(135deg, #0e7db8, #1e88e5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }
    
    .title-underline {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #0e7db8, #1e88e5);
        margin: 20px auto;
        border-radius: 2px;
        animation: slideIn 0.8s ease-out 0.4s both;
    }
    
    .modern-subtitle {
        font-size: 1.1rem;
        color: #6c757d;
        font-weight: 400;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto;
        animation: fadeInUp 0.6s ease-out 0.6s both;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideIn {
        from {
            width: 0;
            opacity: 0;
        }
        to {
            width: 80px;
            opacity: 1;
        }
    }

    /* Featured Projects Section Styles */
    .featured-projects-section {
        position: relative;
    }
    
    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #0e7db8;
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
        font-family: 'Poppins', sans-serif;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .featured-projects-container {
        position: relative;
        margin-top: 4rem;
    }
    
    .featured-projects-scroll {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 20px 0 40px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .featured-projects-scroll::-webkit-scrollbar {
        display: none;
    }
    
    .project-card {
        flex: 0 0 350px;
        height: 500px; /* Sabit yükseklik - tüm kartlar aynı boyutta */
        display: flex;
        flex-direction: column;
    }
    
    .card-inner {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(14, 125, 184, 0.1);
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
        border: 2px solid transparent;
        display: flex;
        flex-direction: column;
    }
    
    .card-inner:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(14, 125, 184, 0.2);
        border-color: #0e7db8;
    }
    
    .card-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    
    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #f4f6f8;
        transition: transform 0.3s ease;
    }
    
    .card-inner:hover .card-image img {
        transform: scale(1.05);
    }
    
    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(14, 125, 184, 0.9), rgba(14, 125, 184, 0.7));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        text-decoration: none;
        color: white;
    }
    
    .card-overlay:hover {
        text-decoration: none;
        color: white;
    }
    
    .card-inner:hover .card-overlay {
        opacity: 1;
    }
    
    .overlay-content {
        text-align: center;
        color: white;
    }
    
    .overlay-content i {
        font-size: 2rem;
        margin-bottom: 10px;
        display: block;
    }
    
    .overlay-content span {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .card-content {
        padding: 25px;
        flex: 1; /* Kalan alanı doldur */
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* İçeriği eşit dağıt */
    }
    
    .card-text-section {
        flex: 1; /* Metin bölümü esnek */
    }
    
    .card-header-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .card-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0e7db8, #1e88e5);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0;
    }
    
    .card-date {
        font-size: 12px;
        color: #6c757d;
        font-weight: 500;
        background: #f8f9fa;
        padding: 4px 10px;
        border-radius: 15px;
        border: 1px solid #e9ecef;
    }
    
    .card-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 12px;
        line-height: 1.3;
        min-height: 50px; /* En az yükseklik - uzun başlıklar için */
        display: flex;
        align-items: center;
    }
    
    .card-description {
        color: #6c757d;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        min-height: 60px; /* En az yükseklik - kısa açıklamalar için */
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .card-action {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #0e7db8;
        font-weight: 600;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        position: relative;
        margin-top: auto; /* Alt tarafa yapıştır */
    }
    
    .card-action:hover {
        color: #0056b3;
        transform: translateX(5px);
    }
    
    .card-action i {
        transition: transform 0.3s ease;
    }
    
    .card-action:hover i {
        transform: translateX(3px);
    }
    
    /* Scroll Buttons */
    .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        border: 2px solid #0e7db8;
        color: #0e7db8;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        box-shadow: 0 5px 15px rgba(14, 125, 184, 0.2);
    }
    
    .scroll-btn:hover {
        background: #0e7db8;
        color: white;
        transform: translateY(-50%) scale(1.1);
    }
    
    .scroll-left {
        left: -25px;
    }
    
    .scroll-right {
        right: -25px;
    }
    
    /* Background Decoration */
    .bg-decoration {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, rgba(14, 125, 184, 0.05), rgba(14, 125, 184, 0.1));
        border-radius: 50%;
        z-index: 0;
    }
    
    /* Responsive */
   @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .project-card {
            flex: 0 0 min(300px, calc(100vw - 80px));
            height: 450px; /* Mobilde de sabit yükseklik */
        }

        .card-image {
            height: 200px;
        }

        .featured-projects-scroll {
            gap: 20px;
            scroll-snap-type: x mandatory;
        }

        .project-card {
            scroll-snap-align: center;
        }
        
        .card-title {
            font-size: 1.2rem;
            min-height: 45px; /* Mobilde daha kısa */
        }
        
        .card-description {
            font-size: 13px;
            min-height: 50px; /* Mobilde daha kısa */
        }
        
        /* Mobilde oklar kartin uzerine binmesin: kartin altina, ortaya */
        .scroll-btn {
            width: 40px;
            height: 40px;
            top: auto;
            bottom: 0;
            transform: none;
        }

        .scroll-btn:hover {
            transform: scale(1.1);
        }

        .scroll-left {
            left: calc(50% - 48px);
        }

        .scroll-right {
            right: calc(50% - 48px);
        }

        .featured-projects-scroll {
            padding-bottom: 65px;
        }
        
        .card-content {
            padding: 20px;
        }
    }
