/* Navbar Styling */
.navbar-custom {
    background-color: #fc350b;
}

.navbar-custom .nav-link {
    color: #fef1e1 !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
    color: #fef1e1 !important;
    text-decoration: none;
}

.navbar-logo {
    height: 40px;       /* Adjust height as needed */
    width: auto;        /* Maintain aspect ratio */
    max-width: 160px;   /* Optional: prevent logo from being too large */
    object-fit: contain;
}


/* Button Styling */
.btn-main-custom {
    background-color: #fef1e1 !important;
    color: #fc350b !important;
    border: none;
    border-radius: 0.5rem;
    box-shadow: none !important;
    transition: none !important;
    cursor: pointer;
}

.btn-main-custom:hover,
.btn-main-custom:focus,
.btn-main-custom:active,
.btn-main-custom:focus-visible,
.btn-main-custom:not(:disabled):not(.disabled):active,
.show > .btn-main-custom.dropdown-toggle {
    background-color: #fef1e1 !important;
    color: #fc350b !important;
    box-shadow: none !important;
    outline: none !important;
}




/*body style*/
.custom-bg {
    background-color: #fef1e1;
}

.custom-heading {
    color: #fc350b;
}
.custom-text {
    color: #000000;
}

.btn-custom {
    background-color: #fc350b;
    color: #fef1e1;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #d82f09;
    color: #ffffff;
}

.btn-custom {
    background-color: #fc350b;
    color: #fef1e1;
}

.badge-custom {
    background-color: #1c1c84;
    color: #ffffff !important;
}


/*footer style*/
.footer-custom {
    background-color: #fc350b;
    color: #fef1e1;
    }
    .footer-custom .small,
    .footer-custom a {
        color: #fef1e1 !important;
    }