.nav-img {
    height: 110px !important;
    width: 190px !important;
}

.footer-img {
    height: 140px;
}


.col-lg-25 {
    flex: 0 0 auto;
    width: 20%;
}

.font-sizecls {
    font-size: 14px !important;
}

.text-blue {
    color: white;
}

.site-footer {
    background-image: url('../images/header/footer-img.png');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.site-header {
    background-image: url('../images/header/nav-img.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* .sticky-header{
    background-image: url('../images/header/nav-img.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
} */

/* .img-height{
    height: 480px !important;
} */

.logo-alginment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-alginment img {
    height: 150px;
    width: 250px;
}

.text-black {
    color: black;
}


@media screen and (max-width: 768px) {

    .footer li,
    .footer p {
        font-size: 13px;
        line-height: 30px;
        color: #000;
        text-align: center;
    }

    .col-lg-25 {
        max-width: 100%;
        width: 100%;
    }
}



/* Default: hide sub-menu */
.navbar-nav .sub-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 10px 0;
    margin-top: 10px;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

/* Style sub-menu items */
.navbar-nav .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.navbar-nav .sub-menu li a:hover {
    background-color: #f0f0f0;
}

/* Show on hover */
.navbar-nav li.has-mega-menu:hover>.sub-menu {
    display: block;
}

.cls-relative {
    position: relative;
}

.hand-img {
    position: absolute;
    right: 0px;
    bottom: 1%;
    width: 400px;
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.owl-nav-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.owl-prev-custom,
.owl-next-custom {
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 1;
}

.client-logo img {
    max-height: 80px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%);
}

.flex-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.button-select {
    padding: 7px;

    background-color: transparent;
    border-radius: 5px;
    border: #646363 2px solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    outline: none;
}

.button-select:hover {
    background-color: #06305a;
    color: #f0f0f0;
}

.image-box {

    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 1s ease, transform 1s ease;
    -webkit-transition: opacity 1s ease, transform 1s ease;
    -moz-transition: opacity 1s ease, transform 1s ease;
    -ms-transition: opacity 1s ease, transform 1s ease;
    -o-transition: opacity 1s ease, transform 1s ease;
    cursor: pointer;
}

.image-box.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;

}

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    /* ← Increased this to go above sticky nav */
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
}


.modal-content {
    margin: auto;
    display: block;
    max-width: 50%;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    margin-top: 50px;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
    z-index: 100000;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

.close {
    position: absolute;
    top: 80px;
    right: 330px;
    color: rgb(255, 255, 255);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}
.font-cls{
    font-size: large;
    font-weight: bold;
}

.close:hover {
    color: #ff0000;
}

.button-select.active {
    background-color: #06305a;
    /* Yellow highlight */
    color: rgb(255, 255, 255);
    /* font-weight: bold; */
}

.font-size-cls{
    font-size: x-large;
}

@media (max-width: 786px) {
    .modal-content {
        max-width: 100%;
        max-height: 100%;
    }

    .modal {
        padding-top: 150px;
    }

    .close {
        position: absolute;
        top: 160px;
        right: 10px;
    }
}