/* Sosyal Medya İkonları - Home Page */
#hero.job-hero-section {
    padding-bottom: 60px !important;
}

.home-logo-col {
    position: relative;
}

.home-social-icons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.home-social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #8b8b8b;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-social-icons .social-icon i {
    font-size: 15px;
}

.home-social-icons .social-icon:hover {
    background-color: #405189;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .home-social-icons {
        position: static;
        transform: none;
        margin-top: 20px;
        margin-bottom: 0;
    }

    #hero.job-hero-section {
        padding-bottom: 40px !important;
    }
}

@media (max-width: 576px) {
    .home-social-icons {
        margin-top: 15px;
        gap: 8px;
    }

    .home-social-icons .social-icon {
        width: 36px;
        height: 36px;
    }

    .home-social-icons .social-icon i {
        font-size: 16px;
    }

    .btn-primary {
        margin-bottom: 25px;
    }
}


