*{}

.brand img{width:29.5%;position:relative;left:20% !important;margin-top:-10px}

.img-responsive{width:100%; border-radius:5px;border:solid 1px #ddd;}

.mt-100{margin-top:100px;}

.mt-50{margin-top:50px;}

.latest-course h3{text-align:center;font-size:14px;display:none;}

.latest-course img{margin-bottom:20px;}

#footer .copyright-content {background: #010101;color:#fff;}

.copyright-text  a{color:#fff !important;}

p strong{color:#da2c10;}

.dnone{display:none;}

/*Responsive css */

@media screen and (max-width: 480px) and (min-width: 321px){

.brand img{width:100%;right:50%;}

.brand-logo:after{display:none;}



}

/* Container for the buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the screen */
    right: 20px;  /* Distance from the right of the screen */
    z-index: 1000; /* Ensure the buttons are above other content */
    display: flex;
    flex-direction: column; /* Stack the buttons vertically */
    gap: 10px; /* Space between the buttons */
}

/* Base style for both buttons */
.contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Makes them perfectly round */
    color: white; /* Icon color */
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Hover effect */
.contact-button:hover {
    transform: scale(1.1);
}

/* Specific styling for WhatsApp */
.whatsapp-button {
    background-color: #25D366; /* WhatsApp green */
}

/* Specific styling for Call */
.call-button {
    background-color: #007bb6; /* A common, friendly blue */
}

 /* Custom styles to ensure the button is always on top */
        .callback-fixed-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1050; /* Above typical modals (1000-1040) */
        }
        /* Custom styling for the modal background overlay */
        .modal-overlay {
            background-color: rgba(0, 0, 0, 0.7);
        }