/* ====== Fullscreen Banner Slider ====== */
.banner-slide {
    position: relative;
    width: 100%;
    min-height: 100vh !important;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 80, 0.55);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 764px;
    padding: 0 5%;
    text-align: left;
    margin-top: -80px;
}

.banner-heading {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.banner-heading .highlight {
    color: #1F96FF;
}

.banner-description {
    font-size: 20px;
    max-width: 548px;
    color: #fff;
}

/* ====== Slick Dots with Circular Outline Progress ====== */
.slick-dots {
    position: absolute !important;
    bottom: 96px !important;
    left: 5%;
    display: flex !important;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background-color: rgb(255, 255, 255, .4) !important;
}

.slick-dots li.slick-active {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
}

.slick-dots li button {
    opacity: 0;
}

.slick-dots li::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(#1F96FF 0deg, transparent 0deg 360deg);
    transform: rotate(-90deg);
}

/* ====== Arrows ====== */
.slick-arrow {
    position: absolute;
    bottom: 84px;
    z-index: 99;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 56px !important;
    height: 56px !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.slick-prev {
    right: 144px !important;
    left: inherit !important;
}

.slick-next {
    right: 76px !important;
}

.slick-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ====== No Banners ====== */
.no-banners {
    text-align: center;
    color: #777;
    padding: 100px 0;
}

.banner-slide-animation-left {
    animation: slideInLeft 1s forwards;
}

.banner-slide-animation-up {
    animation: slideInUp 1s forwards;
}

.banner-slide-animation-right {
    animation: slideInRight 1s forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 575px) {
    .banner-heading {
        font-size: 48px;
    }

    .slick-arrow {
        width: 48px !important;
        height: 48px !important;
    }

    .slick-dots {
        bottom: 84px !important;
    }

    .slick-next {
        right: 12px !important;
    }

    .slick-prev {
        right: 72px !important;
    }
}







/* testing slider shortcode */
/* ===============================
   PROJECT SLIDER STYLES
   Matches the image design exactly
   =============================== */

.project-slider-wrapper {
    width: 100%;
    /*max-width: 1400px;*/
    margin: 16px auto;
    /*padding: 28px 24px 128px 24px;*/
    overflow: hidden;
}

.project-slider-container {
    position: relative;
    padding: 0 2px;
}

.project-slider {
    display: flex;
    gap: 22px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CENTER CARD ACTIVATION CODE: Styling for active center card */
.project-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* opacity: 0.6; */
    transform: scale(0.98);
    /* background: linear-gradient(180deg, rgba(0, 78, 147, 0) 31.6%, rgba(0, 78, 147, 0.7) 73.45%); */
}

.project-slide.active-slide {
    /* opacity: 1; */
    /* background: linear-gradient(180deg, rgba(0, 78, 147, 0) 31.6%, rgba(0, 0, 0, 0.9) 73.45%); */
    /*transform: scale(1);*/
    z-index: 10;
    
}

/* ===============================
   PROJECT CARD
   =============================== */

.project-card {
    /*background: #fff;*/
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-image: 
            linear-gradient(180deg, rgba(0, 78, 147, 0) 31.6%, rgba(0, 78, 147, 0.7) 73.45%), 
        var(--project-bg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/*.active-slide .project-card{*/
/*    background-position: 0 -240px;*/
/*}*/

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* ===============================
   PROJECT IMAGE
   =============================== */

.project-image {
    position: relative;
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.project-location-badge {
    position: absolute;
    top: 24px;
    left: 0px;
    background: #FC8233;
    color: #fff;
    padding: 2px 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    /*border-radius: 4px;*/
    z-index: 2;
    letter-spacing: 0.3px;
}

/* ===============================
   PROJECT OVERLAY & TAGS
   =============================== */
   
  .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%); */
    /* padding: 20px 16px 16px; */
    /* opacity: 0; */
    transition: opacity 0.3s 
ease;
    background: linear-gradient(180deg, rgba(0, 78, 147, 0) 31.6%, rgba(0, 78, 147, 0.7) 73.45%);
    height: 100%;
}

.active-slide .project-overlay {
   
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%); */
    background: linear-gradient(to top, rgb(0 0 0) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    
}

.project-slide:not(.active-slide):hover .project-overlay {
    background: linear-gradient(to top, rgb(0 0 0) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.project-slide:not(.active-slide):hover .project-tags {
     opacity: 1;
    transform: translateY(0);   
    pointer-events: auto; 
}

/*.project-card:hover .project-overlay {*/
/*    opacity: 1;*/
/*}*/

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px); 
    transition: all 0.35s ease; 
    pointer-events: none;  
}

.active-slide .project-tags{
   opacity: 1;
   display: contents;
}

.project-tag {
    display: inline-block;
    background: #FFFFFFE5;
    backdrop-filter: blur(12.5px);
    color: #004E93;
    padding: 4px 10px;
    font-size: 15px;
    font-weight: 400;
    /*border-radius: 4px;*/
    line-height: 1.3;
    margin-bottom: 4px;

    white-space: nowrap;       
    overflow: hidden;          
    text-overflow: ellipsis;
}

.project-overlay-tags{
    position: absolute;
    bottom: 0;
    padding-inline: 18px;
}

/* ===============================
   PROJECT CONTENT
   =============================== */

.project-content {
    padding: 18px;
    flex: 1;
    display: flex;
    /* flex-direction: column; */
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.project-completion {
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    /*margin-bottom: 8px;*/
    font-weight: 600;
}

.project-title {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 0px 0;
    line-height: 1.3;
    height: 72px;
    max-width: 500px;
}

.project-bottom {
    display: flex;
    justify-content: space-between;
    /*align-items: flex-end;*/
    /*margin-top: auto;*/
    margin-top: 12px;
    align-items: center;
}

.project-meta {
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.5;
    font-weight: 600;
}

.project-size {
    font-weight: 600;
    color: #FFFFFF;
}

.project-separator {
    margin: 0 6px;
    color: #FFFFFF;
}

.project-subtitle {
    color: #FFFFFF;
}

/* ===============================
   PROJECT LINK BUTTON
   =============================== */

.project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* .project-link:hover {
    background: #FF6B35;
    transform: scale(1.1);
} */

/* .project-link svg {
    width: 20px;
    height: 20px;
    stroke: #000 !important;
} */

/* .project-link-svg-active{
    display: none;
} */


.project-link-active{
    display: none;
}

.active-slide .project-link-unactive{
    display: none;
}



.active-slide .project-link-active{
    display: flex;
}


/* .project-slide:not(.active-slide):hover .project-link.project-link-unactive{
   opacity: 0;
}

.project-slide:not(.active-slide):hover .project-link.project-link-active{
    opacity: 1;
} */

/* .active-slide .project-link svg {
    stroke: #004E93 !important;
} */



/* ===============================
   NAVIGATION BUTTONS
   =============================== */

.project-nav {
    /*position: absolute;*/
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #1515154D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
}

.slider-btns{
    display: flex;
    gap: 24px;
    margin-top: 90px;
}

/*.project-nav:hover {*/
/*    background: #1a1a1a;*/
/*    border-color: #1a1a1a;*/
/*    color: #fff;*/
/*    transform: translateY(-50%) scale(1.1);*/
/*}*/

.project-nav-prev {
    left: 0;
}

.project-nav-next {
    right: 0;
}

.project-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.project-nav i {
    font-size: 22px;
    color: #002449;
}

/* ===============================
   NO PROJECTS MESSAGE
   =============================== */

.no-projects {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

/*.project-slide.slick-slide.slick-cloned.slick-active {*/
/*    width: 460px !important;*/
/*}*/

.project-slide.slick-slide.slick-current.slick-active.slick-center {
    width: 825px !important;
}

/*.project-slide.slick-slide.slick-active {*/
/*    width: 460px !important;*/
/*}*/

/* ===============================
   RESPONSIVE DESIGN
   =============================== */


@media screen and (min-width: 2260px) {
    .project-slide.active-slide{
        flex-basis: 1100px !important;
    }
}

@media screen and (min-width: 2360px) {
    .project-slide.active-slide{
        flex-basis: 1168px !important;
    }
}   

@media screen and (min-width: 2470px) {
    .project-slide.active-slide{
        flex-basis: 1288px !important;
    }
}



@media (max-width: 1440px) {
    .project-slider-container {
        padding: 0 12px 0 13px;
    }
}

@media (max-width: 1024px) {
    .project-slide {
        flex: 0 0 calc(50% - 10px);
    }
    
    .project-slider-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .project-slide {
        flex: 0 0 100%;
    }
    
    .project-slider-container {
        padding: 0 45px;
    }
    
    .project-image {
        height: 320px;
    }
    
    .project-title {
        font-size: 20px;
        text-align: left;
    }
    
    .project-nav {
        width: 40px;
        height: 40px;
    }

    .project-completion {
        text-align: left;
    }
    
    .project-link-unactive{
        display: none;
    }
}

@media (max-width: 575px) {
    .active-slide .project-tags {
        display: flex;
        transform: translateY(0px);
    }
}
@media (max-width: 480px) {
    .project-slider-wrapper {
        margin: 40px auto;
        padding: 0 5px;
    }
    
    .project-slider-container {
        padding: 0 4px;
    }
    
    .slider-btns {
        margin-top: 26px;
    }
    
    .project-content {
        padding: 10px;
    }

    .project-overlay-tags{
        padding-inline: 10px;
    }
    
    .project-image {
        height: 320px;
    }
    
    .project-title {
        font-size: 18px;
        margin-bottom: 12px;
        max-width: 300px;
        height: 34px;
    }
    
    .project-meta {
        font-size: 12px;
    }
    
    .project-link {
        width: 38px;
        height: 38px;
    }
    
    .project-nav {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 384px) {
    .project-slide.active-slide{
        flex-basis: 330px !important;
    }
}

@media (max-width: 360px) {
    .project-slide.active-slide{
        flex-basis: 314px !important;
    }
}

@media (min-width: 385px) and (max-width: 398px) {
    .project-slide.active-slide{
        flex-basis: 344px !important;
    }
}

@media (min-width: 399px) and (max-width: 424px) {
    .project-slide.active-slide{
        flex-basis: 354px !important;
    }
}

@media (min-width: 425px) and (max-width: 448px) {
    .project-slide.active-slide{
        flex-basis: 372px !important;
    }
}

@media (min-width: 449px) and (max-width: 480px) {
    .project-slide.active-slide{
        flex-basis: 382px !important;
    }
}

