.hero-style10 {
    padding: 150px 0 150px 0;
    max-width: 736px;
}
.hero-title {
    font-size: 60px;
}
.event-grid2 .event-calendar {
    padding: 20px;
    font-size: 30px;
    margin-left: 10px;
    border-radius: 50px;
}
.event-grid2 .event-calendar i {
    font-size: 30px;
}
.service-box_inner.custom-margin {
    margin-top: -80px;
}
.info-media_icon {
    color: #eb0029;
    font-size: 24px;
}
.gallery-box .gallery-img::before {
    pointer-events: none; /* Allow clicks to pass through */
}

.floating-icons {
    position: fixed;
    z-index: 1000;
}

.phone-icon, 
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: bottom 0.3s ease, transform 0.3s ease-in-out;
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.whatsapp-icon {
    font-size: 30px;
}
.phone-icon {
    left: 20px;
    background-color: #007bff; /* Blue color for phone */
}

.whatsapp-icon {
    right: 20px;
    background-color: #25D366; /* WhatsApp green */
}

.phone-icon:hover,
.whatsapp-icon:hover {
    box-shadow: 0 6px 12px rgba(230, 3, 3, 0.3);
    transform: scale(1.1);
}

/* Pulsing animation */
@keyframes pulsing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
}
.service-box img {
    width: 100%;
}