
body {
    font-family:Dubai;
}


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/** Header styling Section**/

img {
    width: 60px;
    height: auto;
}

.brand_title {
    font-size: 2rem;
    color: #FF6500;
    font-weight: 500;
}

    .brand_title:hover {
        color: #009990;
    }

/** Navbar Link styling Section  **/
.link_div {
    background-color: #640D5F;
}

.nav-link {
    color: antiquewhite;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.navbar-toggler i {
    width: 30px;
    height: 30px;
}

i, a {
    color: #FF8225;
}

a {
    text-decoration: none;
}

    a:hover {
        color: #80C4E9;
    }

/* Responsive Grid System for Dynamic Div */
.container-fluid, .container {
    padding-left: 15px;
    padding-right: 15px;
}

.text-danger {
    color: #D21312;
    font-size: 0.8rem;
}

/*  Footer styling Section*/

footer {
    width: 100%;
    text-align: center;
    background-color: #640D5F;
    /*padding: 20px 0;*/ /* Adjust the padding to reduce height */
}

footer .row {
    margin: 0;
}

/* Column adjustments in footer */
footer .copywrite {
    font-size: 0.875rem;
    line-height: 1.2; 
    margin: 0!important; 
   
}

footer .ms-3 {
    margin-left: 1rem;
}
   
@media (max-width: 768px) {
    footer .row {
        flex-direction: column;
        text-align: center;
    }
}

