  header{
    position: fixed;
    background-color: #090909;
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-items: center;
    margin: auto;
    z-index: 3;
}

header nav{
    position: relative;
    background-color: none;
    height: 100%;
    max-width: 1460px;
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
}
header nav a{
    display: flex;
    margin: auto;
}

.twosidelogocntr{
    position: relative;
    display: flex;
    justify-items: flex-start;
    margin-left: 10px;
}

.twosidelogo{
    position: relative;
    width: clamp(50px,4vw,100px);
}

.twosidelogo img{
    width: 100px;
    user-select: none;
}

.buttons{
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 100%;
    width: auto;
    margin-right: 10px;
}   

.pricing , .contact , .dashboard {
    position: relative;
    text-decoration: none;
    height: 50%;
    display: flex;
    width: auto;
    border-radius: 5px;
    align-items: center;
    transition: all .5s ease-in-out;
}

.dashboard {  
    background-color: #e73c45;
}
.dashboard button:hover{
    background-color: #280b0c32;
}

header nav button{
    position: relative;
    height: 100%;
    width: 100px;
    border-radius: 5px;
    border: 0;
    color: #ffffff;
    font-family: 'sf-pro-title';
    cursor: pointer;
    background: none;
    transition: all .1s ease-in-out;
}
.contact button:hover , .pricing button:hover{
    border-radius: 0px;
    border-bottom: 1px solid white;
    color: #d5d5d5;
}

.dropdown {
  position: relative;
  display: flex;       /* inline-block yerine flex */
  align-items: center; /* ortalama */
  height: 100%;        /* diğer butonlarla aynı yükseklik */
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* butonun altına */
  left: 0;
    background: #1e1d1d3d;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.8px);
    -webkit-backdrop-filter: blur(4.8px);  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.4);
  z-index: 10;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: 'sf-pro-title';
  font-size: 14px;
  border-radius: 6px;
  transition: all .3s ease-in-out;
}

.dropdown-content a:hover {
  background-color: #4e4e4e ;
  border-radius: 6px;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.5s ease;
}
.dropdown.active .dropdown-content {
  display: block;
  animation: fadeIn 0.5s ease;
}
.dropdown h2 button {
  position: relative;
  padding-right: 25px; 
}

.dropdown h2 button::after {
  content: url('img/arrow.svg'); 
  position: absolute;
  right: 8px;
  top: 50%;
 transform: translateY(-50%) scale(1.2); 
  width: 10px;
  height: auto;
  pointer-events: none; 
  transition: transform 0.5s ease;
   filter: invert(100%);
}


.dropdown.active h2 button::after {
  transform: translateY(-50%) rotate(180deg);
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}


@media (max-width: 768px) {
#supportbtn{
    display: none;
}
}
@media (max-width: 500px) {
.pricing{
    display: none;
}
}