.ps-26eb481c-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.ps-26eb481c-wrapper {
    width: 100%;
    position: relative;
    background: #0F172A;
    border-radius: 12px;
    overflow: hidden;
    padding: 24px;
}

.ps-26eb481c-slide {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.ps-26eb481c-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.ps-26eb481c-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.ps-26eb481c-category {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ps-26eb481c-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.ps-26eb481c-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.ps-26eb481c-stats {
    display: flex;
    gap: 32px;
    margin: 12px 0;
}

.ps-26eb481c-stat-val {
    font-size: 32px;
    font-weight: 800;
    color: #F8FAFC;
}

.ps-26eb481c-stat-lbl {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
}

.ps-26eb481c-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ps-26eb481c-badge {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 100px;
}

.ps-26eb481c-cta {
    align-self: flex-start;
    padding: 12px 28px;
    background: #3B82F6;
    color: #FFF;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    margin-top: 16px;
}

.ps-26eb481c-cta:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.ps-26eb481c-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ps-26eb481c-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ps-26eb481c-wrapper:hover .ps-26eb481c-img {
    transform: scale(1.03);
}

.ps-26eb481c-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, rgba(59,130,246,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: #FFF !important;
}

/* Projects Cards Grid */
.ps-26eb481c-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.ps-26eb481c-card {
    background: #1E293B;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.ps-26eb481c-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.ps-26eb481c-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.ps-26eb481c-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ps-26eb481c-card:hover .ps-26eb481c-card-img {
    transform: scale(1.08);
}

.ps-26eb481c-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ps-26eb481c-card-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #3B82F6;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.ps-26eb481c-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.ps-26eb481c-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.ps-26eb481c-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
    color: #F8FAFC;
    flex-shrink: 0;
}

.ps-26eb481c-card:hover .ps-26eb481c-card-arrow {
    transform: rotate(-45deg);
    background: rgba(59, 130, 246, 0.1);
}

.ps-26eb481c-card-desc {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Active Highlight border for corresponding card */
.ps-26eb481c-card.ps-active-card {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .ps-26eb481c-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ps-26eb481c-title {
        font-size: 32px;
    }
}
