@media (min-width: 800px){
	.casestudy-illus{
		height:unset;
		width:unset;
/* 		margin-right:unset; */
	}
	.casestudy-header-btn{
		font-size:16px !important;
	
    }
}



.casestudy-grid-section {
/*     width: 100%; */
    gap: 24px;
    display: flex;
    flex-direction: column;
    max-width: -webkit-fill-available;
    margin: 32px 80px 32px 80px;
}
@media (min-width: 1025px) {
	.casestudy-grid-section{
		margin: 32px 10% 32px 10%;
	}
	
	
}

.casestudy-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.casestudy-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #D6D6D6;
/* 	max-width:365px; */
}

.casestudy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.casestudy-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.casestudy-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.casestudy-card-content {
    padding: 16px;
}

.casestudy-category {
    margin-bottom: 8px;
}

.category-tag {
    color: #354858;
    font-size: 14px;
    text-transform: capitalize;
	font-weight: 400;
}

.casestudy-card-title {
    margin: 0 0 12px 0;
}

.casestudy-card-title a {
    text-decoration: none;
    color: #323232;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.casestudy-card-title a:hover {
    color: #1A75FF;
}

.casestudy-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.casestudy-read-more {
    margin-top: auto;
}

.read-more-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}
 .gradient-line {
    background: linear-gradient(90.1deg, #9D8CED 0.12%, #4786F5 49.59%, #96E1EE 99.06%);
    height: 3px;
    width: 100px; 
    border-radius: 2px; 
  }

.read-more-link:hover {
    color: #0056cc;
    text-decoration: underline;
}

/* Category Filter Tabs */

.category-filter-container {
    margin-bottom: 32px;
    margin-top: 60px;
}

.category-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.category-filter-tabs::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background-color: #D6D6D6;
    z-index: 0;
}

.category-filter-tabs::-webkit-scrollbar {
    display: none;
}

.category-filter-container button:hover {
    background: none;
}

.category-tab {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 400;
    color: #868686;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0px 27px 0px 0px;
    position: relative;
    white-space: nowrap;
}

.tab-track {
    display: inline-flex;
    position: relative;
}

.tab-track::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background-color: #D6D6D6;
    z-index: 0;
}

.category-tab.active {
    color: #323232;
}

.category-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9D8CED 0%, #4786F5 50%, #96E1EE 100%);
    z-index: 1;
}


/* footer section */
.conversion-push-container p {
	width:60%;
	margin: 16px 0 16px 0;
}

/* Load More Button Styles */
.loading-spinner-case {
    text-align: center;
    padding: 20px;
}

.load-more-container {
    display: flex;
    justify-content: center;
}

.load-more-btn {
    padding:12px 24px;
    background: white;
    color: #1A75FF;
    border: 1px solid #9D8CED;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #f8fbff;
    border-color: #4285f4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
    transform: translateY(-1px);
}

.load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.2);
}

.load-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

/* Mobile responsive styles for hero section */

@media (max-width: 768px) {
	.hero-showcase{
		gap:16px;
	}
	.illustration{
		margin-bottom:90px;	
	}
	.conversion-push-container p {
		width:90%
	}
}
@media (max-width: 500px) {
	.hero-showcase{
		gap:90px;
	}
	.illustration{
		margin-bottom:70px;	
	}
}

/* Mobile responsive styles for tabs */
@media (max-width: 768px) {
    .category-filter-container {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .category-filter-tabs {
        justify-content: flex-start;
        padding: 0 20px;
    }
    
    .category-tab {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .load-more-btn {
        padding:10px 12px;
        font-size: 16px;
        margin-top: 15px !important;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .category-filter-tabs {
        gap: 8px;
    }
    
    .category-tab {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .load-more-btn {
        font-size: 14px;
    }
}


/* Mobile responsive styles for case study grid */
@media (max-width: 768px) {
    .casestudy-grid-section {
        padding: 0 0px;
        margin: 0px !important;
        gap: 0px;
    }
    
    .casestudy-grid-container {
        display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin: 0px 20px;
    }
    
    .casestudy-card {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .casestudy-card-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .casestudy-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .casestudy-card-content {
        padding: 16px 12px;
    }
    
    .casestudy-card-content h3 {
        font-size: 18px;
    }
    
    .casestudy-card-title a {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .casestudy-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .casestudy-grid-section {
        padding: 0 0px;
    }
    
    .casestudy-card-image {
        height: 200px;
    }
    
    .casestudy-card-content h3 {
        font-size: 14px;
    }
    
    .casestudy-card-title a {
        font-size: 14px;
    }
    
    .casestudy-description {
        font-size: 13px;
    }
}