* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.dropdown-content {
    display: none;

    background-color: #f9f9f9;
    width: 100%;
    height: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 250px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}

.scrolling-container {
    width: 100%;
    height: 90px;
    /* Match the image height */
    overflow: hidden;

    /* Gradient background */
    display: flex;
    align-items: center;
    position: relative;
}

.scrolling-text {
    display: flex;
    white-space: nowrap;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.scrolling-text span {
    padding: 0 50px;
    /* Space between the repeated text */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

.icon-container {
    display: inline-block;
    padding: 20px;
    border: 1px solid black;
    text-align: center;
    cursor: pointer;
    font-size: 50px;
}

.icon-container i {
    transition: opacity 0.3s ease;
}

.hidden {
    display: none;
}

.icon-container:hover .icon-default {
    display: none;
    /* Varsayılan ikonu gizle */
}

.icon-container:hover .icon-hover {
    display: inline;
    /* Yeni ikonu göster */
}

.hidden {
    display: none;
}

.bg-pink {
    background: linear-gradient(90deg, #B80CA9 0%, #FB6234 100%);
}

.navbar-bg {
    background: linear-gradient(to right,
            #3C1AA7 32%,
            #481FC7 44%,
            #5423E7 55%,
            #5423E7 79%,
            #3A19A0 100%);
}

#arrow-right {
    display: none;
    /* Varsayılan olarak gizli */
}

#hakkimizda:hover #arrow-right {
    display: inline-block;
    /* Hover olduğunda göster */
}




#bize-ulasin:hover #arrow-right {
    display: inline-block;
    /* Hover olduğunda göster */
}

.bg-135 {
    background: linear-gradient(135deg, #3C1AA7 32%,
            #481FC7 44%,
            #5423E7 55%,
            #5423E7 79%,
            #3A19A0 100%);

}


.scrollbar-hidden::-webkit-scrollbar {
    display: none;
  }
  
  .scrollbar-hidden {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .price {
    font-size: 20px;
    color: #062165;
    position: relative;
    display: inline-block;
  }
  
  .price::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #5AF7DC;
    transform: rotate(-9deg);
  }
  
  
  .paketler-shadow{
      box-shadow: -6px 11px 4px 0px rgba(0, 0, 0, 0.25);
  }
  


::-webkit-scrollbar {
    width: 12px; /* Width for vertical scrollbar */
    height: 12px; /* Height for horizontal scrollbar */
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  /* Thumb */
  ::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar color */
    border-radius: 10px;
    border: 3px solid #f1f1f1; /* Optional: for padding around the thumb */
  }
  
  /* Hover effect */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
  