/* About sayfası için ana container */
.about-container {
    padding: 120px 0 60px;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(
        rgba(10, 25, 47, 0.8),
        rgba(10, 25, 47, 0.95)
    );
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/grid-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-text-wrapper:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Misyon & Vizyon Styles */
.mission-vision {
    padding: 30px 0;
margin-bottom: 100px;
    position: relative;
    background: linear-gradient(
        rgba(10, 25, 47, 0.95),
        rgba(10, 25, 47, 0.98)
    );
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mv-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: rotateY(360deg);
    background: rgba(100, 255, 218, 0.1);
}

.glow-text {
    color: var(--accent-color);
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

/* Özellikler listesi */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(10, 25, 47, 0.3);
    border-radius: 8px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* İletişim CTA bölümü */
.contact-cta {
    text-align: center;
    padding: 60px 20px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 10px;
    margin: 0 20px;
}

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* İletişim butonu için düzeltmeler */
.btn.btn-primary {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--background);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.btn.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

/* Container düzeltmesi */
.container {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    overflow: visible;

}

/* Buton container'ı için */
.cta-buttons {
    position: relative;
    z-index: 10;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 100px 0 40px;
    }

    .about-hero {
        padding: 100px 0 60px;
    }

    .about-text-wrapper {
        padding: 30px;
    }

    .mv-card {
        padding: 22px;
        padding-top: 15px;
    }

    .mv-icon {
        font-size: 2.5rem;
    }

    .mv-card h2 {
        font-size: 1.6rem;
    }

    .mv-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .glow-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .mission-vision {
        padding: 60px 0;
    }

    .mv-card {
        padding: 22px;
        padding-top: 15px;
    }

    .mv-icon {
        font-size: 2.5rem;
    }

    .mv-card h2 {
        font-size: 1.6rem;
    }

    .mv-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 40px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
    }

    .mv-icon i {
        font-size: 2rem;
    }

    .glow-text {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mv-card,
.feature-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.mv-card {
    animation-delay: 0.2s;
}

.feature-item:nth-child(1) { animation-delay: 0.6s; }
.feature-item:nth-child(2) { animation-delay: 0.8s; }
.feature-item:nth-child(3) { animation-delay: 1.0s; }
.feature-item:nth-child(4) { animation-delay: 1.2s; }

/* About section için düzeltmeler */
.about-section {
    position: relative;
    z-index: 1;
    padding-top: 120px; /* Üst boşluğu artırdık */
    padding-bottom: 60px;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px; /* Yanlarda boşluk */
}

/* Section title için düzeltme */
.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 40px; /* Alt boşluğu artırdık */
    font-family: 'Oswald', sans-serif;
    position: relative;
}

.about-text {
    margin-top: 30px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.1rem; /* Okunabilirliği artırmak için */
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .about-section {
        padding-top: 100px; /* Mobilde biraz daha az padding */
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


section {
    margin-bottom: 40px;
}

h2 {
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style-type: none;
    padding: 0;
}

@media (max-width: 600px) {
    main {
        padding: 10px;
    }

    h2 {
        font-size: 1.5em;
    }
}

.background-section {
    position: relative;
    padding: 40px 20px;
    color: white; /* Yazı rengini beyaz yaparak arka planda görünürlüğü artırdık */
    background: linear-gradient(rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.9)), url('assets/images/about/22.webp');
    background-size: cover; /* Arka plan görselinin boyutunu kaplayacak şekilde ayarladık */
    background-position: center; /* Arka plan görselinin ortalanmasını sağladık */
}

.background-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    opacity: 0.5; /* Görselin opaklığını ayarladık */
    z-index: 1;
}

#biz-kimiz.background-section::before {
    background-image: url('assets/images/about/biz-kimiz.webp');
}

#misyonumuz.background-section::before {
    background-image: url('assets/images/about/misyonumuz.webp');
}

#vizyonumuz.background-section::before {
    background-image: url('assets/images/about/vizyonumuz.webp');
}

#degerlerimiz.background-section::before {
    background-image: url('assets/images/about/degerlerimiz.webp');
}

h2 {
    position: relative;
    z-index: 2; /* Başlıkların arka planda görünmesini sağlamak için z-index ayarladık */
}

p, ul {
    position: relative;
    z-index: 2; /* Paragraf ve liste elemanlarının arka planda görünmesini sağlamak için z-index ayarladık */
}

.mission-vision-wrapper {
    display: flex;
    justify-content: space-between; /* Alanı eşit dağıt */
    flex-wrap: wrap; /* Responsive tasarım için */
    margin-top: 20px; /* Üstten boşluk */
}

.mission, .vision {
    flex: 1; /* Her iki bölüm de eşit genişlikte olacak */
    margin: 10px; /* Her iki bölüm arasında boşluk */
    padding: 20px; /* İçerik için padding */
    background: rgba(255, 255, 255, 0.1); /* Arka plan rengi */
    border-radius: 8px; /* Kenarları yuvarla */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Gölge efekti */
}

@media (max-width: 768px) {
    .mission, .vision {
        flex: 100%; /* Küçük ekranlarda tam genişlikte olacak */
        margin: 5px 0; /* Üst ve alt boşluk */
    }
}