﻿
.contact-container {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

    /* Form Alanları */
    .contact-container .form-group label {
        font-weight: bold;
        color: rgb(19, 87, 153);
    }

    .contact-container .form-control {
        border: 2px solid #ced4da;
        border-radius: 0.25rem;
    }

        .contact-container .form-control:focus {
            border-color: #80bdff;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }


    .contact-container .btn-primary {
        background-color: #007bff;
        border-color: #007bff;
        font-size: 18px;
        padding: 10px 20px;
        transition: background-color 0.3s ease;
    }

        .contact-container .btn-primary:hover {
            background-color: #0056b3;
            border-color: #0056b3;
        }

.contact-info h3 {
    color: #343a40;
    margin-bottom: 10px;
}

.contact-info p {
    color: #6c757d;
}

.social-link {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

    .social-link:hover {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
    }

.iletisim {
    animation: float 3s ease-in-out infinite;
}
.sol{
    margin-top:100px;
}

.firstfooter {
    background-color: rgb(17, 25, 54);
    color:white;
}
.list-group {
    border-radius: 0px;  
    width:100%;
}

.list-group-item {
    background-color: rgb(17, 25, 54); 
    color: #fff; 
    border-top:none; 
    border-bottom: 1px solid #ccc;
    border-left: none; 
    border-right: none; 
}

    .list-group-item a {
        text-decoration: none;
        color: #fff;
        display: block;
    }

        .list-group-item a:hover {
            background-color: #007bff;
            color: #fff;
        }



@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px); 
    }

    100% {
        transform: translateY(0);
    }
}
