* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* Showcase Section */
.showcase-section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    min-height: 100vh;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(102, 104, 231, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container-2 {
    max-width: 1400px;
    margin: 0 auto;
    /* position: relative; */
    z-index: 1;
}

.section-header {
    text-align: center;
    /* margin-bottom: 60px; */
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0f2391 0%, #176177 50%, #368ac2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    /* margin: 0 auto; */
    line-height: 1.6;
}

.carousel-container-2 {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: auto;
    background: rgba(46, 27, 27, 0);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.carousel-wrapper-2 {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-slide {
    min-width: 100%;
    height: auto;
    /* position: relative; */
    display: flex;
    align-items: center;
    /* gap: 30px; */
    padding: 30px 20px;
}

.project-image {
    flex: 1;
    height: 500px;
    /* position: relative; */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.project-info {
    flex: 1;
    padding: 20px;
}

.project-category {
    color: #6ae9ff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.project-description {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.project-features {
    list-style: none;
    margin-bottom: 30px;
}

.project-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #cbd5e1;
}

.project-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6dd3fc;
    font-weight: bold;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2225c5, #27c7cc);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.project-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.carousel-controls {
    position: absolute;
    bottom: 10px;
    margin: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2291c5;
    transform: scale(1.2);
}

.project-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .project-slide {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
    }

    .project-image {
        max-height: 40vh;
    }

    .project-image img {
        height: 100%;
        object-fit: cover;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-counter {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .carousel-controls {
        bottom: 5px;
        gap: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-dots {
        gap: 5px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}
