﻿@keyframes glow {
    0% {
        box-shadow: 0 0 5px #00f, 0 0 10px #00f, 0 0 15px #00f, 0 0 20px #00f;
    }

    50% {
        box-shadow: 0 0 10px #ff0, 0 0 15px #ff0, 0 0 20px #ff0, 0 0 25px #ff0;
    }

    100% {
        box-shadow: 0 0 5px #00f, 0 0 10px #00f, 0 0 15px #00f, 0 0 20px #00f;
    }
}

/* Glowing Button Style */
.glowing-btn {
    border: 2px solid #00f;
    color: #00f;
    background-color: transparent;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .glowing-btn:hover {
        animation: glow 1.5s infinite;
    }
li {
    padding-bottom: 6px;
    text-align: justify;
    text-justify: inter-word;
   
}
.card-with-bg {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 2px solid #06402B;
    width: 100%;
    background-position: top;
    justify-content: space-between;
    background-size: cover;
    background-image: url('/Images/backimage.jpg');
    background-position: center;
}



.btnfix {
    position: fixed;
    bottom: 19px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-family: Calibri;
    font-weight: 600;
    cursor: pointer;
    z-index: 100;
    margin-right: 50px;
}
