.case-study-listing-outer{
    padding:0px 70px;
    margin-top:0px;
}

/* Case Study Header */
.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 52px;
    }

.case-study-header-left h2 {
    font-size: 44px;
    font-family: 'Proxima-extrabold';
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 55px;
}
.each-case-study-content h2{
    font-family: 'Proxima Nova Semibold';
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin: 28px 0;
}
/* Industries Filter Dropdown */
.case-study-header-right {
    display: flex;
    align-items: center;
}

.industries-filter-dropdown {
    position: relative;
}

.industries-filter-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    border-radius: 60px;
    border: 1px solid rgba(0, 0, 0, 0.32);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    transition: none;
    box-shadow: none;
}

.industries-filter-btn:hover,
.industries-filter-btn:focus,
.industries-filter-btn:active {
    border: 1px solid rgba(0, 0, 0, 0.32) !important;
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.filter-btn-text {
    display: inline-block;
}

.filter-btn-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.filter-btn-icon svg {
    display: block;
    width: 11px;
    height: 6px;
}

.industries-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1000;
    display: none;
}

.industries-dropdown-menu.show {
    display: block;
}

.industries-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.industry-filter-item {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Proxima Nova Rg';
    transition: all 0.2s ease;
}

.industry-filter-item:hover {
    background-color: #f5f5f5;
    color: #E94B2E;
}

.industry-filter-item.active {
    background-color: #f5f5f5;
    color: #E94B2E;
    font-weight: 700;
}

.each-case-study {
    border-bottom: 1px solid #DBDBDB;
   
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 36px 0;
    
}
.each-case-study-readmore {
    background-image: url(../images/casestudy-Down_Arrow.svg);
    background-position: right center;
    background-repeat: no-repeat;
    position: absolute;
    height: 30px;
    width: 40px;
    right: 0;
    opacity: 0;
    background-size: cover;
}
.each-case-study-content {
    width: 40%;
}
ul.case-study-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 28px;
}
ul.case-study-categories li {
    font-size: 20px;
    color: #E74C2D;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.each-case-study:hover ul.case-study-categories li{
    color: #2B2B6B;
    
}
.each-case-study-content p {
    color: #797979;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}
.each-case-study-content a {
    text-decoration: none;
    color: #08081A;
}
.each-case-study h2{
    transition: all 0.3s ease;
}
.each-case-study:hover h2{
    color: #E84B2C; 
    background-image: linear-gradient(45deg, #E84B2C , #E89E2E 100%); 
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}


.each-case-study-image {
    /* width: 440px;
    height: 340px; */
    width: 342px;
    height: 237px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.each-case-study:hover .each-case-study-image {
    transform: rotate(-6deg) translate(-100px, -40px);
    scale: 1.2;
}
.each-case-study:hover .each-case-study-image::after {
    opacity: 0;
}
.each-case-study:hover .each-case-study-readmore {
    opacity: 1;
}
.each-case-study-image::after {
    /* height: 90%;
    width: 90%; */
    width: 100%;
    height: 95%;
    background-color: #D9D9D9;
    opacity: .5;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 20px;
    transition: all 0.3s ease;
}
.each-case-study-image img {
    /* width:90%;
    height: 90%; */
    width:100%;
    height: 95%;
    object-fit: cover;
    border-radius: 20px;
}
.button-outer-loadmore{
    text-align: center;
}
button#load-more-case-studies {
    border: 1px solid #9e9e9e;
    opacity: 1;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    border-radius: 60px;
    color: #000;
    background-color: #fff;
}
button#load-more-case-studies:hover {
    background: linear-gradient(90deg, #E79D2D, #E74C2D);
    animation: gradientShiftbtn 4s ease-in-out infinite;
    background-size: 100% 100%;
    border-color: #fff;
    color: #fff;
}
button#load-more-case-studies:hover svg path {
    stroke: #fff;
}
.sec-spacing{
    padding: 66px 0px 80px;}
section.case-study-listing {
        padding-bottom:0;
    }
@media (max-width:1566px) {
    .each-case-study-image {
        width: 340px;
        height: 240px;
    }
    .each-case-study-content {
        width: 50%;
    }
    
}

@media (max-width:1440px) {
}
@media (max-width:1199px) {
    .each-case-study-image {
        width: 320px;
        height: 220px;
    }
    .each-case-study:hover .each-case-study-image {
        transform: rotate(-6deg) translate(-80px, -40px);
    }
}

@media only screen and ( max-width: 991px) {
    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .case-study-header-left h2 {
        font-size: 32px;
    }
    
    .case-study-header-right {
        width: 100%;
    }
    
    .industries-dropdown-menu {
        width: 100%;
        min-width: auto;
    }
    
    .each-case-study {
        display: block;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .each-case-study-content {
        width: 100%;
        margin-bottom: 30px;
    }
    .each-case-study-image {
        width: 100%;
        height: 350px;
    }
    .each-case-study:hover .each-case-study-image {
        transform: rotate(-5deg) translate(-20px, -20px);
        scale: .9;
    }
}

@media only screen and ( max-width: 767px) {
    .case-study-listing-outer {
        padding: 0px 20px;
        padding-top: 40px;
    }
    
    .case-study-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .case-study-header-left h2 {
        font-size: 28px;
    }
    
    .industries-filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
