.inner-page-header{
    padding:190px 0 0px 90px !important
}

 .custom_box {
            border-radius: 8px;
            background: #F1F0F0;
            padding: 30px;
        }

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px; /* Positioned at bottom right */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float i {
    font-size: 32px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px; /* Positioned at bottom right for mobile */
        right: 20px;
        font-size: 28px;
        line-height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px; /* Positioned at bottom right for small mobile */
        right: 15px;
        font-size: 24px;
        line-height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}