﻿body {
}


.deneme{
    color:red;
}

.btn-details {
    background-color: #213448;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-details:hover {
        background-color: #1a2838;
        transform: translateY(-2px);
    }

.aboutUs-divs    {
    box-shadow: 10px 10px black;
}

.gradient-text {
    background: linear-gradient(#452829, #57595B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DİL SELECT TASARIMI */
.lang-select-wrapper {
    position: absolute;
    top: 18px;
    right: 18px;
}

.lang-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 6px 34px 6px 14px;
    border-radius: 999px;
    border: 1px solid #452829;
    background-color: #EAE0CF;
    color: #452829;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23452829' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    transition: all 0.25s ease;
}

    .lang-select:hover {
        background-color: #ddd3c1;
    }

    .lang-select:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(69,40,41,0.2);
    }