/* Reset ve Genel Stiller */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    box-sizing: content-box !important;
}

/* Latest talents */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #1c222f;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background-color: #2d3748;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}
 .mobile-menu {
        display: none;
    }

    @media (max-width: 768px) {
        .mobile-menu {
            display: block;
        }

        .mobile-menu-btn {
            background: none;
            border: none;
            padding: 10px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .mobile-menu-btn .bar {
            width: 25px;
            height: 2px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active .bar:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-btn.active .bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active .bar:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: #1c222f;
            padding: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .nav-menu li {
            width: 100%;
        }

        .nav-menu a {
            display: block;
            padding: 0.5rem 1rem;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }
    }
	
	/* Anasayfa */
	
	 .latest-talents .text-center a{
 background-color:#f1c40f;
}

/* Paragraph */
.footer .footer-bottom p{
 font-family:Georgia,Times,'Times New Roman',serif;
}


    .talent-image {
        position: static !important;
        padding-bottom: 0 !important;
        width: 320px !important;
        height: 320px !important;
    }

    .talent-image img {
        position: static !important;
        width: 512px !important;
        height: 512px !important;
        object-fit: cover;
        object-position: center top;
    }

    @media (max-width: 992px) {
        .talent-image,
        .talent-image img {
            width: 100% !important;
            height: 512px !important;
        }
    }
    </style>
    <style>
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .section-header h2 {
        color: var(--white-color) !important;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .section-header h2:after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--primary-color);
    }

    .section-header p {
        color: var(--gray-color) !important;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 1rem auto 0;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 2rem;
        }
        .section-header p {
            font-size: 1rem;
        }
    }
	 .latest-talents {
        background-color: var(--dark-color);
        padding: 5rem 0;
    }

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

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 2rem;
        border-radius: 0.5rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }

    .btn-primary {
        background-color: var(--primary-color);
        color: var(--dark-color);
    }

    .btn-primary:hover {
        background-color: #FCD34D;
        transform: translateY(-2px);
    }

    .btn i {
        transition: transform 0.3s;
    }

    .btn:hover i {
        transform: translateX(5px);
    }
	.blog-section {
        background-color: var(--dark-color);
        padding: 5rem 0;
    }

    .section-header h2 {
        color: var(--white-color) !important;
    }

    .section-header p {
        color: var(--gray-color) !important;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .blog-card {
        background: var(--white-color);
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .blog-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.875rem;
        color: var(--gray-color);
        margin-bottom: 1rem;
        background: rgba(234, 179, 8, 0.1);
        padding: 0.5rem;
        border-radius: 0.25rem;
    }

    .blog-meta span {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .blog-meta i {
        color: var(--primary-color);
    }

    .blog-image {
        position: relative;
        padding-bottom: 60%;
        overflow: hidden;
    }

    .blog-image img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

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

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--dark-color);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-content p {
        color: var(--gray-color);
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    @media (max-width: 992px) {
        .blog-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .blog-grid {
            grid-template-columns: 1fr;
        }
    }
	.newsletter {
        background: linear-gradient(135deg, #EAB308, #FCD34D);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .newsletter::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%, transparent);
        background-size: 50px 50px;
        opacity: 0.2;
    }

    .newsletter .section-header h2 {
        color: var(--dark-color);
        margin-bottom: 1rem;
        text-shadow: 1px 1px 0 rgba(255,255,255,0.2);
    }

    .newsletter .section-header p {
        color: var(--dark-color);
        opacity: 0.9;
    }

    .newsletter-form {
        max-width: 500px;
        margin: 2rem auto 0;
        position: relative;
        background: rgba(255,255,255,0.15);
        padding: 0.5rem;
        border-radius: 0.75rem;
        backdrop-filter: blur(5px);
    }

    .newsletter-form input {
        width: 100%;
        padding: 1rem 1.5rem;
        padding-right: 140px;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 0.5rem;
        background: rgba(255,255,255,0.95);
        color: var(--dark-color);
        font-size: 1rem;
    }

    .newsletter-form input::placeholder {
        color: #6B7280;
    }

    .newsletter-form button {
        position: absolute;
        right: 8px;
        top: 8px;
        bottom: 8px;
        padding: 0 1.5rem;
        border: none;
        border-radius: 0.3rem;
        background: var(--dark-color);
        color: var(--primary-color);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

    .newsletter-form button:hover {
        background: #2D3748;
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    @media (max-width: 576px) {
        .newsletter-form {
            padding: 1rem;
        }

        .newsletter-form input {
            padding-right: 1.5rem;
            margin-bottom: 1rem;
        }

        .newsletter-form button {
            position: static;
            width: 100%;
            padding: 1rem;
        }
    }
	
	/* anasayfa */
.latest-talents{
    background-color:#fff;
   }
   
   /* Heading */
   .latest-talents .section-header h2{
    color:#f1c40f !important;
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
   /* Paragraph */
   .latest-talents .talent-card p{
    color:#f1c40f;
   }
   
   /* Heading */
   .latest-talents .talent-card h3{
    color:#34495e;
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
   /* Button */
   .featured-talents .text-center a{
    background-color:#f1c40f;
   }
   
   /* Heading */
   .featured-talents .section-header h2{
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
   /* Paragraph */
   .featured-talents .section-header p{
    font-family:'Courier New',Courier,'Lucida Sans Typewriter','Lucida Typewriter',monospace;
   }
   
   /* Heading */
   .services h2{
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
   /* Link */
   .nav-menu li a{
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
   /* Span Tag */
   .nav .logo span{
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
   /* Heading */
   .blog-section .section-header h2{
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
   /* Paragraph */
   .blog-grid .blog-card p{
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
   /* Heading */
   .blog-grid .blog-card h3{
    font-family:Palatino,'Palatino Linotype','Palatino LT STD','Book Antiqua',Georgia,serif;
   }
   
   /* Button */
   .blog-section .text-center a{
    background-color:#f1c40f;
   }
   
   /* Heading */
   .newsletter .section-header h2{
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
   /* Input */
   .newsletter .newsletter-form input[type=email]{
    background-color:#ecf0f1;
   }
   
   /* Heading */
   .footer .footer-links h4{
    font-family:Georgia,Times,'Times New Roman',serif;
   }
   
  /* Input */
.newsletter .newsletter-form input[type=email]{
    color:#1c2834;
   }
   
    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #EAB308;
    --dark-color: #111827;
    --light-color: #F9FAFB;
    --gray-color: #6B7280;
    --white-color: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
   /* max-width: 1280px; */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

.nav-menu a {
    color: var(--white-color);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    color: var(--white-color);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    padding: 0 1rem;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    padding: 0 1rem;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: #FCD34D;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Featured Talents */
.featured-talents {
    padding: 5rem 0;
    background-color: var(--dark-color);
    color: var(--white-color);
}

.featured-talents h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.talents-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.talent-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    color: var(--white-color);
    text-decoration: none;
}

.talent-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.talent-card:hover img {
    transform: scale(1.1);
}

.talent-info {
    /* position: absolute;  */
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-logo span {
    color: var(--white-color);
}

.footer h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--white-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--gray-color);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--white-color);
}

.footer-contact p {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-color);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background-color: var(--dark-color);
    color: var(--white-color);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* About Content */
.about-content {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.about-section {
    margin-bottom: 2rem;
}

.about-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem;
    background-color: var(--dark-color);
    border-radius: 1rem;
    margin-bottom: 5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    color: var(--white-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
}

/* Team Section */
.team-section {
    margin-bottom: 5rem;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--primary-color);
}

/* Values Section */
.values-section {
    margin-bottom: 5rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-color);
}
/* Mevcut CSS'e eklenecek yeni stiller */

/* Talents Content */
.talents-content {
    padding: 5rem 0;
}

/* Filters */
.talents-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: space-between;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-select {
    padding: 0.75rem 2rem 0.75rem 1rem;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    background-color: #1F2937;
    color: var(--white-color);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    min-width: 180px;
}

.search-group {
    flex-grow: 1;
    max-width: 300px;
}

.search-input {
    position: relative;
}

.search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
}

.search-input input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    background-color: #1F2937;
    color: var(--white-color);
}

/* Talents Grid */
.talents-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.talent-card {
    background-color: var(--white-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.talent-card:hover {
    transform: translateY(-5px);
}

.talent-image {
    position: relative;
    padding-bottom: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
}

.talent-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.talent-info {
    padding: 1.5rem;
}

.talent-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.talent-age {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.talent-categories {
    color: var(--primary-color);
    font-weight: 500;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    background-color: #1F2937;
    color: var(--white-color);
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.pagination-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-dots {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .talents-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
    }

    .search-group {
        max-width: none;
    }
}/* Mevcut CSS'e eklenecek yeni stiller */

/* Projects Content */
.projects-content {
    padding: 5rem 0;
}

/* Filters */
.projects-filters {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

.filter-group {
    display: flex;
    gap: 1rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background-color: var(--white-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-5px);
}

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

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

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

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-status.active {
    background-color: var(--success-color);
    color: var(--white-color);
}

.project-info {
    padding: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.project-type,
.project-channel {
    font-size: 0.875rem;
    color: var(--gray-color);
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-description {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.detail i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .projects-filters {
        justify-content: stretch;
    }

    .filter-group {
        flex-direction: column;
        width: 100%;
    }

    .filter-select {
        width: 100%;
    }
}/* Mevcut CSS'e eklenecek yeni stiller */

/* Services Content */
.services-content {
    padding: 5rem 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.5;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--gray-100);
    padding: 5rem 0;
    margin: 5rem 0;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-color);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 2rem;
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-label {
    color: var(--gray-color);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--black-color);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 0.5rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: var(--white-color);
    color: var(--black-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--gray-100);
}

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

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

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

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }
}/* Mevcut CSS'e eklenecek yeni stiller */

/* Apply Content */
.apply-content {
    padding: 5rem 0;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    z-index: -1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    background: var(--white-color);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-200);
    color: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step.active .step-number {
    background: var(--primary-color);
    color: var(--black-color);
}

.step-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.step.active .step-label {
    color: var(--black-color);
    font-weight: 500;
}

/* Application Form */
.application-form {
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    width: auto;
}

/* File Upload */
.file-upload {
    border: 2px dashed var(--gray-300);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.file-upload:hover {
    border-color: var(--primary-color);
}

.file-upload i {
    font-size: 2rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.upload-text span {
    color: var(--primary-color);
    font-weight: 500;
}

.upload-text p {
    color: var(--gray-500);
    margin: 0.5rem 0;
}

.upload-info {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.file-upload input[type="file"] {
    display: none;
}

/* Info Box */
.info-box {
    background: var(--primary-color-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-box ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--gray-700);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.form-navigation button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem;
}

.success-message i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.success-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.application-number {
    background: var(--primary-color-light);
    padding: 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .progress-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .progress-steps::before {
        display: none;
    }

    .step {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        padding: 0;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .form-navigation button {
        width: 100%;
        justify-content: center;
    }
}/* Mevcut CSS'e eklenecek yeni stiller */

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white-color);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
}

/* Success Stories */
.success-stories {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

.success-stories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--white-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.story-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.story-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.story-text {
    color: var(--gray-600);
}

/* Requirements Section */
.requirements-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}

.requirements-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.requirements-card {
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 0.5rem;
}

.requirements-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.requirements-card ul {
    list-style: none;
    padding: 0;
}

.requirements-card li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.requirements-card li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--black-color);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.btn-primary {
    background: var(--black-color);
    color: var(--white-color);
}

.btn-secondary {
    background: var(--white-color);
    color: var(--black-color);
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid,
    .stories-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}/* Blog Styles */
.blog-content {
    padding: 4rem 0;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    background-color: var(--white-color);
    color: var(--gray-700);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-select:hover {
    border-color: var(--primary-color);
}

.search-input {
    position: relative;
    width: 300px;
}

.search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
}

.search-input input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.search-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Featured Post */
.featured-post {
    margin-bottom: 4rem;
}

.featured-post-card {
    display: block;
    background: var(--white-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.featured-post-card:hover {
    transform: translateY(-5px);
}

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

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

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--black-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
}

.featured-post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-category {
    color: var(--primary-color);
    font-weight: 500;
}

.post-date,
.post-author {
    color: var(--gray-600);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black-color);
}

.featured-post-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

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

.blog-info {
    padding: 1.5rem;
}

.blog-info h3 {
    margin: 0 0 1rem 0;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.4;
}

.blog-info p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-meta i {
    color: var(--primary-color);
}

.no-results {
    text-align: center;
    color: #666;
    padding: 2rem;
    grid-column: 1 / -1;
}

/* Blog Newsletter */
.blog-newsletter {
    background-color: var(--gray-100);
    padding: 4rem 0;
    margin-top: 4rem;
}

.blog-newsletter .newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.blog-newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-newsletter p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        width: 100%;
    }

    .featured-post-image {
        height: 300px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Contact Form */
.contact-form-container {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

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

.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-form button i {
    font-size: 1rem;
}

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

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

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}/* Blog Detail Styles */
.blog-detail-content {
    padding: 4rem 0;
}

.blog-hero {
    position: relative;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
}

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

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-content {
    margin-bottom: 3rem;
}

.blog-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.blog-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-content ul,
.blog-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.blog-content img {
    width: 100%;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* Related Posts */
.related-posts {
    border-top: 1px solid var(--gray-200);
    padding-top: 3rem;
}

.related-posts h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.related-post-card {
    display: block;
    transition: transform 0.3s;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-image {
    position: relative;
    height: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

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

.related-post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.related-post-card:hover .related-post-title {
    color: var(--primary-color);
}

.related-post-date {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: var(--white-color);
    font-size: 0.875rem;
    transition: opacity 0.3s;
}

.share-button:hover {
    opacity: 0.9;
}

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

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

.share-button.linkedin {
    background-color: #0a66c2;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-button:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero {
        height: 300px;
    }

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

    .blog-meta {
        gap: 1rem;
    }
}/* Talent Detail Styles */
.talent-detail-content {
    padding: 4rem 0;
}

.talent-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.talent-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.talent-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

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

.talent-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.talent-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.talent-feature {
    background-color: var(--gray-100);
    padding: 1rem;
    border-radius: 0.5rem;
}

.talent-feature-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.talent-feature-value {
    font-weight: 600;
}

.talent-section {
    margin-bottom: 2rem;
}

.talent-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-item,
.education-item {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.experience-item:last-child,
.education-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.experience-title,
.education-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.experience-meta,
.education-meta {
    color: var(--gray-600);
}

/* Lightbox */
.talent-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 2rem;
}

.talent-lightbox.active {
    display: flex;
}

.talent-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.talent-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--white-color);
    font-size: 2rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.talent-lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.talent-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
    font-size: 2rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.talent-lightbox-prev {
    left: 1rem;
}

.talent-lightbox-next {
    right: 1rem;
}

.talent-lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .talent-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Newsletter Section */
.newsletter {
    background-color: #1a1a1a;
    padding: 4rem 0;
    color: #fff;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text {
    margin-bottom: 2rem;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.newsletter-text p {
    color: #999;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.newsletter-form .input-group {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.newsletter-form .input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 1px solid #333;
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: #222;
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #2a2a2a;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Alert Messages */
.alert {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    margin: 1rem auto;
    font-weight: 500;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.alert i {
    font-size: 1.2rem;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .input-group {
        max-width: 100%;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-text p {
        font-size: 1rem;
    }
}

/* Newsletter alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.newsletter-form {
    position: relative;
}

.newsletter-form button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}