/**
 * Tasarım ve Kodlama: Anıl Can Ayan
 * Website: Kodsena.com
 */

/* Timeline Section */
.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #007bff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 30px;
}

.timeline-item:nth-child(odd) {
    margin-right: 50%;
    padding-right: 30px;
    text-align: right;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    position: absolute;
    top: 0;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-date {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Values Section */
.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    text-align: center;
    margin-bottom: 30px;
}

.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-card p {
    color: #007bff;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: #007bff;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #007bff;
    color: #fff;
}

/* Certificates Section */
.certificates-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.certificate-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.certificate-card img {
    max-width: 150px;
    margin-bottom: 15px;
}

.certificate-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
