body {
    background-color: #ebebeb;
    font-family: Arial, sans-serif;
}

.sub-image {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.sub-image:hover {
    opacity: 0.7;
}

.sub-image.selected {
    border: 2px solid #007bff;
    /* box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); */
}

.bannerContainer {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.prjD-B {
    background-color: white;
    margin-top: 15px;
    padding-top: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.bannerContainer-sub1 {
    flex: 1;
    padding: 15px 20px 10px 30px;
    text-align: left;
}

.bannerContainer-sub {
    flex: 1;
    padding: 15px 20px 10px 30px;
    text-align: left;
}

.bannerContainer-subs {
    flex: 1;
    padding: 15px 10px 10px 10px;
    text-align: left;
}

.bannerContainer img {
    max-width: 100%;
    height: auto;
}

.headerBanner img {
    width: 100%;
    height: auto;
}

.bannerContainer-group {
    display: flex;
    justify-content: space-between;
}

.size-icons i {
    font-size: 14px;
    background: lightgray;
    padding: 12px;
    margin: 0 5px;
}

.xl {
    font-size: 19px !important;
    background: lightgray;
    padding: 8px 7px !important;
    margin: 0 5px;
    font-weight: 500;
}

.xxl {
    font-size: 19px !important;
    background: lightgray;
    padding: 8px 7px !important;
    margin: 0 5px;
    font-weight: 500;
}

.projectDetails-List {
    padding: 10px;
}

.projectDetail-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    margin-bottom: 20px;
}

.projectDetail-sub-banner {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.projectDetail-sub-banner img:hover {
    opacity: 0.5;
}

.projectDetail-sub-banner img {
    max-width: 100%;
    height: auto;
}

.projectDetail-sub-banner p {
    margin-top: 10px;
}

.projectDetail-center {
    text-align: center;
}

.headerBanner {
    width: 64%;
    padding: 0 10%;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .bannerContainer {
        flex-direction: column;
    }

    .headerBanner {
        width: 95%;
        padding: 0px 2.5%;
    }

    .bannerContainer-sub1 {
        padding: 15px;
    }

    .bannerContainer-subs {
        padding: 15px;
    }

    .bannerContainer-group {
        flex-direction: flex;
    }

    .size-icons i {
        font-size: 12px;
        padding: 10px;
        margin: 0 3px;
    }

    .xl,
    .xxl {
        font-size: 16px !important;
        padding: 6px 5px !important;
        margin: 0 3px;
    }

    .projectDetail-sub-banner p {
        font-size: 13px;
    }
}

@media screen and (max-width: 1450px) and (min-width:767px) {
    .bannerContainer-sub1 {
        position: sticky;
        top: 30px;
        height: 100%;
    }

    .nav-links li {
        padding: 0 20px;
    }
}
.bannerContainer-sub,
.headerBanner,
.bannerContainer-subs {
    opacity: 0;
    transform: translateY(40px);
    /* Initially move the element down, adjust value as needed */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.bannerContainer-sub.active,
.headerBanner.active,
.bannerContainer-subs.active {
    opacity: 1;
    transform: translateY(0);
    /* Move the element back to its original position */
}

.navTopBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 9999;
  }
  
  .navTopBar.show {
    opacity: 1;
  }