.elementor-1655 .elementor-element.elementor-element-a04301a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2185e82 */.banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0px;
    margin: auto;
    align-items: stretch; /* ✅ kartları eşit yükseklikte hizala */
}

.banner {
    display: flex;
    flex-direction: column; /* ✅ içerikler dikey sırada */
    justify-content: space-between; /* ✅ buton hep en aşağıda */
    align-items: flex-start; /* ✅ yazılar sola hizalı */
    background: #f8f8f8;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    height: 100%; /* ✅ kutular eşit boyda kalsın */
}

.banner:hover {
    transform: translateY(-5px);
}

.banner-content {
    flex: 1;
    width: 100%;
    padding: 10px 0;
    text-align: left; /* ✅ tüm yazılar sola hizalı */
}

.banner h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.banner p {
    font-size: 16px;
    margin: 10px 0;
}

.btn {
    margin-top: auto; /* ✅ butonu en aşağı sabitler */
    display: inline-block;
    padding: 5px 20px;
    background: black;
    color: white;
    text-decoration: none;
    font-family: Poppins;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid black;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    align-self: flex-start; /* ✅ butonu sola hizala */
}

.btn:hover {
    background: white;
    color: black;
    border: 1px solid black;
}

.banner-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-top: 15px;
}

/* 📱 Telefon: Tek sütun */
@media (max-width: 768px) {
    .banner-container {
        grid-template-columns: 1fr;
    }

    .banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .banner h2 {
        font-size: 18px;
    }

    .banner p {
        font-size: 14px;
    }

    .btn {
        font-size: 13px;
        padding: 6px 16px;
    }

    .banner-image {
        height: 180px;
    }
}

/* 📱 Tablet: 2 sütun */
@media (min-width: 769px) and (max-width: 1024px) {
    .banner-container {
        grid-template-columns: 1fr 1fr;
    }

    .banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .banner-image {
        height: 200px;
    }
}

/* 🔗 Sosyal Medya İkonları */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    color: black;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #555;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Başlangıçta bannerlar görünmesin */
.banner {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease; /* ✅ Daha yumuşak ve belirgin animasyon */
}/* End custom CSS */