.custom-card {
    border-radius: 40px !important;
}

.custom-button {
    background-color: orangered;
    border: none;
    padding: 6px 13px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    margin: 20px 0px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-button:hover {
    background-color: rgb(249, 115, 66);
}

/* Navbar Start */
.nav-item a {
    color: white;
}

.dropdown-menu li {
    background-color: white;
    color: rgb(137, 46, 34);
}

.navbar-nav li a:hover {
    background-color: rgb(137, 46, 34);
    color: white;
}

.dropdown-menu li a {
    color: rgb(137, 46, 34);
}


.button-container {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    position: relative;
    /* width: 100%; */
}

.button-container::before,
.button-container::after {
    content: "";
    width: 1px;
    height: 40px;
    /* Match button height */
    background-color: whitesmoke;
    margin: 0 10px;
}

.custom-button-2 {
    background-color: orangered;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    height: 25px;
    padding: 0 10px;
    font-size: 15px;
    border: none;
}

.custom-button-2:hover {
    background-color: yellow;
    color: #0f0f0f;
}

/* Navbar Ends */


/* Home video Start */
/* Text shadow for better readability */
.text-shadow {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 35px !important;
    }
    h2 {
        font-size: 25px !important;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 28px !important;
    }
    h2 {
        font-size: 20px !important;
    }
    .custom-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}
/* Home video ends */

/* All Courses Start */
.image-container-2 {
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    /* Optional: Adds rounded corners */
}

.image-container-2 img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.image-container-2 img:hover {
    transform: scale(1.1);
}

/* All Courses Ends */
/* Why Join Bihm Start */
.custom-list {
    position: relative;
    list-style: none;
    padding-left: 20px;
}

.custom-list::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: orange; /* Vertical line color */
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: orange; /* Square color */
    border-radius: 2px;
}

/* Why Join BIHM Ends */
/* News And Notice Start */
.image-container {
    overflow: hidden;
    width: 100%;
    height: 200px;
    /* Adjust height as needed */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.1);
}

/* News And Notice Ends */


/* Footer Start */
.footer-links {
    color: white !important;
    text-decoration: none;
    position: relative;
}

.footer-links::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* Adjust this value if needed */
    width: 0;
    height: 2px;
    /* Thickness of the underline */
    background-color: white;
    transition: width 0.3s ease-in-out;
}

.footer-links:hover::after {
    width: 100%;
}

/* Footer Ends */