.navbar-nav a:hover {
    color: blue;
}

.card:hover {
    background-color: #FF8A1D;
    color: white
}

.card {
    box-shadow: 2px 2px 2px 2px grey;
    border-radius: 0px
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.form-group textarea {
    resize: vertical;
}
.form-group input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.form-group input[type="submit"]:hover {
    background-color: #0056b3;
}

#mqr{
    height:1000px;
    overflow-x: auto;
}

#mqr p a{
text-decoration: none;

}

/*Code for button*/
.call-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s;
    animation: blink 8s infinite;
}

.call-button:hover {
    transform: scale(1.1);
}

.call-button i {
    font-size: 1.5rem; /* Adjust the icon size */
}

@keyframes blink {
    0%, 100% {
        opacity: 2;
    }
    50% {
        opacity: 0;
    }
}

/* Mobile Styles */
@media (max-width: 600px) {
    .call-button {
        width: 50px;
        height: 50px;
    }

    .call-button i {
        font-size: 1.2rem; /* Adjust the icon size for mobile */
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s;
    animation: blink 8s infinite; /* Adjust the duration here */
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 1.5rem; /* Adjust the icon size */
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Mobile Styles */
@media (max-width: 600px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 1.2rem; /* Adjust the icon size for mobile */
    }
}
