.slider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 50px;
}

.slider-section .section-label {
    font-size: 18px;
    font-weight: 600;
    color: #2374E7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slider-section .section-title {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 700;
    color: #143D83;
    text-align: center;
    margin-bottom: 36px;
    line-height: 1.2;
}

/* Slider wrapper */
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1900px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.slider-wrapper.grabbing {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: 35px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 10px 4px 20px;
}

/* Card */
.card {
    position: relative;
    flex: 0 0 calc(24% - 16px);
    min-width: 180px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: none;
}

@media (max-width: 900px) {
    .card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 560px) {
    .card {
        flex: 0 0 calc(85% - 8px);
    }
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(44, 75, 226, 0.22);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1);
}

/* Blue hover overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2374E7;
    padding: 28px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 0 0 12px 12px;
    opacity: 80%;
}

.card:hover .card-overlay {
    transform: translateY(0);
}

.overlay-tag {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: white !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.overlay-title {
    font-size: 12px !important;
    font-weight: 600;
    color: white !important;
    line-height: 1.3;
}

.overlay-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.03em;
    transition: gap 0.2s ease, color 0.2s ease;
}

.card:hover .overlay-arrow {
    gap: 8px;
    color: #fff;
}

.overlay-arrow svg {
    transition: transform 0.2s ease;
}

.card:hover .overlay-arrow svg {
    transform: translateX(4px);
}

/* Nav buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e0e4f5;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(44, 75, 226, 0.12);
    z-index: 10;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.nav-btn:hover {
    background: #2374E7;
    border-color: #2374E7;
    box-shadow: 0 4px 20px rgba(44, 75, 226, 0.3);
}

.nav-btn:hover svg path {
    stroke: #fff;
}

.nav-btn.prev {
    left: 10px;
}

.nav-btn.next {
    right: 10px;
}

.nav-btn svg path {
    stroke: #2c4be2;
    transition: stroke 0.2s;
}

@media (max-width: 640px) {
    .nav-btn.prev {
        left: 4px;
    }

    .nav-btn.next {
        right: 4px;
    }
}

/* footer {
    background: linear-gradient(135deg, #2d1f8a 0%, #1e3fa8 55%, #2563eb 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 20px 0;
} */

/* overlay */
/* footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .05) 0%, transparent 40%),
        linear-gradient(245deg, rgba(255, 255, 255, .06) 0%, transparent 45%);
} */

/* container */
/* .footer-container-legal {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
} */

/* grid */
/* .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
    gap: 48px 32px;
} */

/* brand */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: #3b5af5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.brand-desc {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* social */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: start;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #93D095;
}

/* headings */
.footer-col h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 22px;
}

/* links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
    font-size: 14px;
}

/* contact */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .70);
}

/* subscribe */
.subscribe-form {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
}

.subscribe-desc {
    color: white;
}

.subscribe-form input {
    flex: 1;
    padding: 12px;
    border: none;
}

.subscribe-form button {
    padding: 12px 18px;
    background: #93D095;
    border: none;
    color: #fff;
}

/* divider */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 50px;
}

/* bottom */
/* .footer-bottom {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
} */

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    footer {
        padding: 50px 16px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .brand-name {
        font-size: 22px;
    }

    .subscribe-form input {
        width: 100%;
    }

    .footer-bottom {
        font-size: 12px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .brand-logo {
        flex-direction: row;
    }

    .brand-desc br {
        display: none;
    }

    .contact-list li {
        font-size: 13px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

}

#skills-section {
    width: 100%;
    background: #F6F9FE;
    padding: 4rem 0rem;
}

#skills-section .skills {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* subtle top gradient bar */
#skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.left {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.experience-row {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.big-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 9vw, 7.5rem);
    line-height: 1;
    color: #143D83;
    letter-spacing: -1px;
    position: relative;
}

/* slight underline accent */
.big-number::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #415F92;
    opacity: .25;
    border-radius: 2px;
}

.exp-label {
    font-size: .9rem;
    color: #415F92;
    line-height: 1.4;
    padding-bottom: .5rem;
    font-weight: 500;
}

.headline {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: #143D83;
    line-height: 1.22;
    letter-spacing: -.5px;
}

/* ── RIGHT SIDE ── */
.right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.right-title {
    font-size: clamp(.95rem, 1.3vw, 1.1rem);
    font-weight: 700;
    color: #143D83;
    margin-bottom: 2.2rem;
    letter-spacing: -.2px;
}

/* ── SKILL ROW ── */
.skill {
    margin-bottom: 1.8rem;
}

.skill:last-child {
    margin-bottom: 0;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .5rem;
}

.skill-name {
    font-size: .82rem;
    color: #415F92;
    font-weight: 500;
    letter-spacing: .02em;
}

.skill-pct {
    font-size: .82rem;
    color: #415F92;
    font-weight: 600;
}

/* track */
.bar-track {
    height: 8px;
    background: #e2e2de;
    border-radius: 100px;
    overflow: hidden;
}

/* fill */
.bar-fill {
    height: 100%;
    border-radius: 100px;
    background: #2374E7;
    width: 0;
    /* starts at 0 */
    transition: width 1.4s cubic-bezier(.22, .68, 0, 1.1);
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
    #skills-section {
        grid-template-columns: 1fr;
        padding: 2.8rem 2rem;
        gap: 2.6rem;
    }
}

@media (max-width: 420px) {
    #skills-section {
        padding: 2rem 1.4rem;
    }

    #skills-section .skills{
        grid-template-columns: 1fr;
    }
}