header {
    display: flex;
    gap: 1rem;
    width: 100vw;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff54;
    padding: calc(1rem + 0.5vw) calc(0.5rem + 2vw);
    /* Drowdwon İçin zindex*/
    z-index: 3 !important;

}

header>.logo {
     width: clamp(100px, calc(100px + 5vw), 175px);
    max-height: clamp(30px, calc(30px + 5vw), 60px);
    object-fit: contain;
    object-position: left;
}

header>nav {
    display: flex;
    gap: calc(0.75rem + 1vw);

}

header>nav a {
    font-size: clamp(1.5rem, 1.75vw, 1.75rem);
    font-weight: 600;
    cursor: pointer;
}

header>.ulasin {
    background-color: #1c66ac;
    padding: calc(0.5rem + 0.25vw) calc(0.75rem + 0.30vw);
    font-size: clamp(1.5rem, 1.75vw, 1.75rem);
    transition: background-color 0.6s ease-in-out;
    /* Yumuşak geçiş */
}

header>.ulasin:hover {
    background-color: #96cc17;
}


/* Responsive */
@media (max-width:740px) {
    header>nav {
        display: none;
    }


    header>.ulasin {
        margin-left: auto;
    }
}

@media (max-width:320px) {
    header>.ulasin {
        display: none;
    }
}


/* Dropdown Nav */
.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    
}

.dropdown>ul {
    visibility: hidden;
    position: absolute;
    top: 100%;
    background-color: #1c66ac;
    padding: 10px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

    display: flex;
    flex-direction: column;
    gap: 1rem;


    width: max-content;
    /*Efekt İçin*/
    opacity: 0;
    /* Öğenin başlangıçta görünmez olması için */
    transform: translateY(-10px);
    /* Menü yukarıda başlasın */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.dropdown>ul>li a {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem) !important;
}

.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}



/* Dropdown Menü */
.dropdown-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    
    display: none;
    background-color: #1c66ac;
    font-size: clamp(2rem, 3vw, 2.5rem);
    padding: 2px 6px !important;
}

.dropdown-menu>ul {
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1c66ac;
    padding: 10px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 1rem;


    width: max-content;
    /*Efekt İçin*/
    opacity: 0;
    /* Öğenin başlangıçta görünmez olması için */
    transform: translateY(-10px);
    /* Menü yukarıda başlasın */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.dropdown-menu>ul>li a {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem) !important;
}

.dropdown-menu:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}









/* Sticky Buttons - Start*/
#contact-buttons {
    position: fixed;
    bottom: calc(10px + 1vw);
    right: calc(5px + 1vw);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(1rem + 0.25vw);
}

#contact-buttons a {
    width: calc(50px + 0.60vw);
    height: calc(50px + 0.60vw);
    background-color: #1c66ac;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;
     /* Animasyon ekleniyor */
    
}

#contact-buttons a:nth-of-type(1){
    animation: shake 2s infinite ease-in-out;
}

#contact-buttons a:nth-of-type(2){
    animation: shake 1.5s infinite ease-in;
}

#contact-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 80px 50px rgba(0, 0, 0, 0.2);
}

#contact-buttons i {
    font-size: calc(2.75rem + 0.25vw);
}

/* Sticky Buttons - End*/


/* Hafif ve yavaş titreşim animasyonu */
@keyframes shake {
    0% {
        transform: translateX(0) translateY(0);
    }
    20% {
        transform: translateX(-1px) translateY(0);
    }
    40% {
        transform: translateX(1px) translateY(0);
    }
    60% {
        transform: translateX(0) translateY(1px);
    }
    80% {
        transform: translateX(0) translateY(-1px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}