.custom-video {
    width: 100%;
    height: auto;
    /* Responsive height */
    max-height: 800px;
    /* Optional: Limits maximum height */
    object-fit: cover;
}

.floating-btn {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 1000;
}

.floating-btn a,
.floating-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: white;
    font-size: 24px;
    border: none;
}

.floating-btn .whatsapp {
    background-color: #25d366;
}

.floating-btn .contact-us {
    background-color: #007bff;
}

.floating-btn a:hover,
.floating-btn button:hover {
    opacity: 0.9;
}

.book-demo-btn {
    position: fixed;
    right: -52px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.book-demo-btn:hover {
    background-color: #e67e22;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.social-icons a {
    font-size: 30px;
    margin-right: 15px;
    text-decoration: none;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.card-img-top {
    border-radius: 10px;
}