.service-details ul li {
    list-style: disc !important;
}

.service-contact input,
.service-contact textarea {
    border: 1px solid #999 !important;
}

.service-img img {
    height: 350px;
    object-fit: cover;
}

.service-img {
    height: 350px;
}

.blog-img img {
    width: 1100px;
    height: 400px;
    object-fit: cover;
}

.gallery-image img {
    height: 500px;
    object-fit: cover;
}

.product-img img {
    height: 291px;
}

.team-img img {
    border-radius: 20px 20px 20px 20px !important;
}

.portfolio-banner {
    height: 50vh !important;
}

.detail-img a {
    width: 100%;
}


.waviy {
    position: relative;
}

.waviy span {
    position: relative;
    display: inline-block;
    animation: flip 2s infinite;
    animation-delay: calc(.2s * var(--i));
    padding: 0 !important;

}

@keyframes flip {

    0%,
    80% {
        transform: rotateY(360deg)
    }
}


.floating-buttons-container {
    position: fixed;
    right: 25px;
    bottom: 120px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.floating-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: inherit;
    z-index: 1;
}

.floating-button a {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white !important;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.floating-button .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.floating-button .text {
    opacity: 0;
    margin-left: 15px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.floating-button .text small {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
    margin-top: 2px;
}

.floating-button:hover {
    width: 220px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.floating-button:hover .text {
    opacity: 1;
    transform: translateX(0);
}

.floating-button:hover .icon {
    transform: scale(1.1);
}

.floating-button:active {
    transform: translateY(0px) scale(0.98);
}

/* WhatsApp Button */
.floating-button.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-button.whatsapp:hover {
    background: linear-gradient(135deg, #2be473 0%, #1da085 100%);
}

.floating-button.whatsapp .icon {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Call Button */
.floating-button.call {
    background: linear-gradient(135deg, #e43131 0%, #c02828 100%);
}

.floating-button.call:hover {
    background: linear-gradient(135deg, #e84545 0%, #d32f2f 100%);
}

.floating-button.call .icon {
    animation: callRing 1.5s infinite;
}

@keyframes callRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-buttons-container {
        right: 15px;
        bottom: 150px;
        gap: 12px;
    }

    .floating-button {
        width: 55px;
        height: 55px;
    }

    .floating-button:hover {
        width: 200px;
    }

    .floating-button .icon {
        font-size: 18px;
    }

    .floating-button .text {
        font-size: 13px;
        margin-left: 12px;
    }
}

@media (max-width: 480px) {
    .floating-button:hover {
        width: 180px;
    }

    .floating-button .text {
        font-size: 12px;
    }
}

/* Enhanced hover effects */
.floating-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.floating-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Tooltip effect */
.floating-button .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.floating-button .tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0,0,0,0.8);
}

.floating-button:not(:hover) .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Entrance animation */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-button:nth-child(1) {
    animation: slideInFromRight 0.6s ease-out 0.2s both;
}

.floating-button:nth-child(2) {
    animation: slideInFromRight 0.6s ease-out 0.4s both;
}
