.btn {
  background: #444444;
}
.btn::before {
  background: #262626;
}
.logo img {
  width: 170px;
  margin-top: 20px;
}
.mobile_menu .slicknav_menu .slicknav_btn {
  top: -60px;
}
.popular-work-area .single-cat .img-cap h4 {
  font-size: 25px;
}
.popular-work-area .single-cat .img-cap {
  top: 80%;
}
.experience-area .caption-overlay {
  height: 80%;
}
.slider-area .slide-full-content h1 {
  font-size: 70px;
}

@media (max-width: 575px) {
  .slider-area .slide-full-content h1 {
    font-size: 29px;
    line-height: 1.5;
  }
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 20px; /* Sağda olması için */
    z-index: 1000;
    animation: float 2s infinite;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float a {
    color: white;
    font-size: 28px;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}