﻿.innerpage-title-area-nedenturkiye {
    padding: 240px 0;
}

h2 {
    font-size: 79px !important;
    line-height: 81px !important;
}

li {
    line-height: 26px !important;
}

#fontawesome .container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#fontawesome .row .col-md-12 i {
    margin-right: 100px !important;
}

.row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    position: relative;
}

    .row i {
        font-size: 43px;
        color: #0011ff;
        background: #f5f7f9;
        padding: 28px;
        border-radius: 10px;
    }

    .row .text {
        flex: 1;
        font-size: 16px;
        color: #333;
    }

.divider {
    border-bottom: 1px dashed #ccc;
    width: 70%;
    margin: 0 auto;
}

.fixed-info-button {
    position: fixed;
    bottom: 40%;
    right: 0px;
    background-color: #004fd4;
    color: white !important;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .fixed-info-button:hover {
        background-color: #0042b3;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .fixed-info-button i {
        font-size: 18px;
        margin-right: 8px;
    }

    .fixed-info-button span {
        font-size: 14px;
    }
/*------------------------------------ Responsive Düzen -----------------------------*/
@media (max-width: 768px) {

    .innerpage-title-area-nedenturkiye {
        padding: 200px 15px;
    }

    h2 {
        font-size: 50px !important;
        line-height: 55px !important;
    }

    #fontawesome .container {
        width: 90%; /* Küçük ekranlarda daha iyi görünüm */
    }

    #fontawesome .row .col-md-12 i {
        margin-right: 35px !important;
    }
}

@media (max-width: 578px) {
    .innerpage-titile p {
        font-size: 16px;
    }

    .innerpage-title-area-nedenturkiye {
        padding: 210px 15px;
    }

    h2 {
        font-size: 50px !important;
        line-height: 55px !important;
    }

    #fontawesome .container {
        width: 95%; /* Mobilde neredeyse tam genişlik */
    }

    #fontawesome .row .col-md-12 i {
        margin-right: 35px !important;
    }
}

/*-----------------Animasyon--------------------*/

.overlay {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 2;
    animation: slideOverlay 1.5s forwards;
}

@keyframes slideOverlay {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

@keyframes fadeInBg {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.container {
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInText 0.5s 1s forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
