* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.card-hover:hover {
    border: 1px solid #b8d9a2c0 !important;
    transition: 500ms;
}
.card-hover:hover span a {
    background-color: #b8d9a2c0 !important;
    color: darkgreen !important;
    transition: 500ms;
}
.from-btn:hover {
    background-color: #b8d9a2c0 !important;
    color: darkgreen !important;
    border: 1px solid #b8d9a2c0 !important;
    transition: 500ms;
}

.icon-hover:hover {
    background-color: #b8d9a2 !important;
    cursor: pointer;
    transition: 300ms !important;
}

.hover-btn:hover {
    background-color: #b8d9a2c0;
    color: #222;
    border: 1px solid #b8d9a2 !important;
    transition: 300ms;
}

.hover-btn2 {
    position: absolute;
    bottom: 0;
    left: 3rem;
}

    .hover-btn2:hover {
        background-color: #198754a7;
        color: #fff;
        border: 1px solid #1987544e !important;
        transition: 300ms;
    }

.img-hover {
    cursor: pointer !important;
    transition: transform 500ms;
    transform-origin: center center;
}

    .img-hover:hover {
        transform: scale(1.2);
    }

/* manu style  */
.mn-hvr {
    transition: 700ms;
}

    .mn-hvr:hover {
        background-color: #0e663d;
    }

/* Dropdown Menu Style */
.drp-category {
    position: relative;
}

    .drp-category a i {
        position: relative;
        top: 2px;
        left: 4px;
    }

.drp-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 12em;
    background-color: #ffffff;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transform: scaleY(0);
    transform-origin: top center;
    transition: 500ms !important;
}

    .drp-menu a {
        display: inline-table;
        text-decoration: none;
        color: #000;
        width: 100%;
        padding: 10px !important;
        border-bottom: 1px solid #80808071;
    }

        .drp-menu a:hover {
            color: #0e663d;
        }

.drp-category:hover .drp-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}

/*Log In Form Style*/

/*.loginParent {
    position: relative;
}*/

/*.login {
    position: absolute;
    top: 100% !important;
    right: 200px !important;
    width: 14em;
    background-color: #ffffff;
    z-index: 1;
}*/

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    visibility: hidden !important;
    opacity: 0 !important;
}

.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100% !important;
    left: -155px !important;
    width: 14em;
    background-color: #ffffff;
    z-index: 1;
}



/*.loginParent:hover .login {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}*/

/* ourService syle css */

/* .ourService img{
    box-shadow: 3px 3px 30px #222 !important;
} */
.ourServiceTitle ol li {
    line-height: 40px !important;
}

.adminButton {
    position: absolute;
    top: 10px;
    right: 0px;
}

/* Sales Section Style */

.salesItem {
    background-color: #0d8d47;
    width: 9rem;
    height: 9rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.salesItem {
    position: relative;
}

.salesItem::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
}

/* Work Section img part Style  */

.workImage {
    position: relative;
}

.image-2 {
    position: absolute;
    bottom: -35px;
    right: -35px;
    border-radius: 5%;
    width: 25rem;
}

/* Gallery section style */


.news-image img {
    width: 25rem;
    height: 18rem;
    border-radius: 15px 15px 0 0;
}

.angkor-hover {
    text-decoration: none;
    transition: 500ms !important;
}

    .angkor-hover:hover {
        color: #0e663d !important;
    }

/* Footer Section Style */
.footer {
    background: url(image/fotter-bg.jpg) no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.address a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 400ms;
}

    .address a:hover {
        color: #0e663d;
    }

.formStyle input, textarea {
    border: 1px solid #0e663d !important;
}

    .formStyle input:focus {
        box-shadow: 0px 0px 0px 3px #0e663d69;
    }

.formStyle textarea:focus {
    box-shadow: 0px 0px 0px 3px #0e663d5c;
}




/* Add the following CSS to your stylesheet */
.navbar {
    position: sticky;
    top: 0; /* Adjust the value based on your design */
    background-color: #your_background_color; /* Set a background color for the sticky navbar */
    z-index: 1000; /* Set a z-index to ensure the navbar appears above other elements */
}

    /* Add this to make the dropdown menu items visible when the navbar is sticky */
    .navbar.sticky .drp-menu {
        display: block !important;
    }

/* Optionally, add a transition effect for a smooth transition when the navbar becomes sticky */
.navbar {
    transition: background-color 0.3s ease-in-out;
}

/* Add this class to the navbar using JavaScript when scrolling down */
.sticky {
    background-color: #your_sticky_background_color; /* Set a background color for the sticky navbar */
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-from-left {
    animation: slideInFromLeft 1s ease-in-out;

}




.news--title p {
    font-family: 'Times New Roman', Times, serif;
}

.recent--post {
    border: 1px solid #ddd;
}

.recent--post--title h5 {
    font-size: 20px;
    padding: 12px;
}

.news--date {
    font-family: 'Courier New', Courier, monospace;
}

.news--comment {
    font-family: 'Courier New', Courier, monospace;
}

.content a span:hover {
    color: #0e663d;
    transition: all ease-in-out 500ms;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid #ccc;
}

.day {
    border: 1px solid #ccc;
    padding: 5px;
    text-align: center;
    font-weight: 600;
}

.current-day {
    background-color: #11743b;
    color: #fff;
}

.form-floating {
    position: relative;
}

    .form-floating span i {
        position: absolute;
        top: 0;
        right: 0;
        padding: 20.5px;
        border-radius: 0 5px 5px 0px;
    }
