.contact-card {    display: flex;    align-items: center;    padding: 20px;    border: 1px solid #ccc;    border-radius: 8px;    margin-bottom: 20px;    height: 150px; /* Sabit yükseklik */    transition: background-color 0.3s; /* Sadece background-color için geçiş süresi ekledik */    width: 100%;}.contact-card:hover {    background-color: #f9670b;}.icon {    margin-right: 20px;    margin-left: 20px;    font-size: 2.3rem;    width: 60px;    height: 60px;    display: flex;    align-items: center;    justify-content: center;    background-color: #f9670b; /* Arka plan rengi */    border-radius: 50%; /* Yuvarlak yapmak için */}.icon i {    color: #fff; /* İkon rengi */    transition: color 0.3s; /* İkon rengi için geçiş süresi ekledik */}.contact-info {    flex: 1;    display: flex;    flex-direction: column;    justify-content: center; /* Dikey ortalamak için */}.contact-info p {    margin: 0; /* İçerikler arasındaki boşluğu ortadan kaldır */    color: #333; /* Metin rengi */    transition: color 0.3s; /* Metin rengi için geçiş süresi ekledik */}.contact-card:hover .icon i,.contact-card:hover .contact-info p {    color: #fff; /* Hover durumunda beyaz renk */}.mb-form form,.collapse form {    background-color: #fff;    padding: 40px;    border-radius: 8px;    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, .09);}.mb-form input,.mb-form textarea,.mb-form select,.collapse input,.collapse textarea,.collapse select {    width: 100%;    padding: 10px;    margin-bottom: 10px;    border: 1px solid #ccc !important;    border-radius: 4px;    box-sizing: border-box;}.mb-form select,.collapse select {    background-color: #fff; /* Dropdown arkaplan rengi */    color: #333; /* Dropdown metin rengi */}#avatar {    width: 100%;    padding: 10px;    border: 2px dashed #aaa !important;    border-radius: 5px;    text-align: center;    color: #333;    font-weight: bold;    cursor: pointer;    background-color: #f9f9f9;    height: 90px;}#avatar::before {    content: 'Dosya yükle veya sürükleyip bırak';    display: block;    text-align: center;    font-size: 14px;    padding: 10px 0;    color: #333;}@keyframes loadingAnimation {    0% {        background-color: #f0f0f0;    }    50% {        background-color: #00aaff;    }    100% {        background-color: #f0f0f0;    }}/* Geçiş animasyonu */@keyframes successAnimation {    0% {        background-color: #f0f0f0;    }    100% {        background-color: rgba(18, 189, 54, 0.95); /* Başarılı yükleme için yeşil */    }}/* Animasyonları elemente uygulayın */#avatar.loading {    animation: loadingAnimation 1s infinite;}#avatar.success {    animation: successAnimation 1s forwards;}input::file-selector-button {    background-color: transparent;    border: 0;    color: #000;    /*padding: 1rem 1.25rem;*/    margin: -55px 0;    display: inline-block;    cursor: pointer;}