.about-slide-top {
    position: relative;
    height: 200px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.single-about-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.about-slide-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    min-height: 240px;
    background: white;
}

.slide-bottom-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: inherit;
}

.slide-bottom-desc {
    flex: 1;
    margin-bottom: 24px;
}

.slide-bottom-desc p {
    font-size: 16px;
    line-height: 1.5;
    color: #475467;
    margin: 0;
    font-weight: 400;
    font-family: inherit;
}

.slide-bottom-btn {
    margin-top: auto;
}

.slide-bottom-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF4500;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    font-family: inherit;
}

.slide-bottom-btn a:hover {
    color: #E63900;
}

.slide-bottom-btn img {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.slide-bottom-btn a:hover img {
    transform: translate(2px, -2px);
}

/* Specific styles for each case study card */
.slide-1 .about-slide-top {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.slide-2 .about-slide-top {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.slide-3 .about-slide-top {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

/* Add some visual elements */
.slide-1 .about-slide-top::after {
    content: '{ AI }';
    position: absolute;
    font-family: monospace;
    font-size: 48px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.slide-2 .about-slide-top::after {
    content: '✈';
    position: absolute;
    font-size: 48px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.slide-3 .about-slide-top::after {
    content: '🛒';
    position: absolute;
    font-size: 48px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
} 