﻿/* ---------------------------- */
/* About Section */
.about-section {
    position: relative;
    padding: 80px 0;
    background: #f7f7f7;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }

/* Pulse animasyon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 5s infinite ease-in-out;
}

.about-content {
    padding: 20px;
    margin-top:-20px;
}

/* Başlık ve alt çizgi */
.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    position: relative;
    margin-bottom: 15px;
}

.about-line {
    width: 150px; /* önce 100px idi, büyüttük */
    height: 4px; /* biraz kalınlaştırdık */
    background: linear-gradient(90deg, #cfcfcf, #fff); /* renk aynı */
    border-radius: 2px;
    margin: 0 auto 25px auto; /* yatayda ortala, alt boşluk koru */
}


/* Hover efekti başlık */
.about-title:hover {
    color: #007bff;
    transition: color 0.3s ease;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .about-btn:hover {
        background: linear-gradient(135deg, #0056b3, #003f7f);
        transform: translateY(-2px) scale(1.05);
    }

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 24px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
