body {
    background-color: #1E1E1E;
    color: #FDFFEF;
    overflow-y: auto;
}
::selection {
    background-color: #2E35FF;
    color: #FDFFEF;
}
.text-outline {
    -webkit-text-stroke: 1px #FDFFEF;
    color: transparent;
}
.smooth-scroll {
    scroll-behavior: smooth;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}
/* Progress bar animation */
.progress-bar {
    width: 0%;
    background-color: #383fff;
    height: 8px;
    border-radius: 4px;
    transition: width 1.5s ease-out;
}
.progress-bar.animate {
    width: var(--progress-width);
}
/* Marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Blob button effect */
.blob-btn {
    z-index: 1;
    position: relative;
    padding: 20px 46px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #2e35ff;
    font-size: 18px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    width: 100%;
    font-family: 'Syne', sans-serif;
}
.blob-btn:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #2e35ff;
    border-radius: 30px;
}
.blob-btn:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
}
.blob-btn:hover {
    color: #fdffef;
    border-radius: 30px;
}
.blob-btn:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
}
.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #fdffef;
}
.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
}
.blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #2e35ff;
    border-radius: 100%;
    transform: translate3d(0,150%,0) scale(1.7);
    transition: transform 0.45s;
}
@supports(filter: url('#goo')) {
    .blob-btn__blob {
        transform: translate3d(0,150%,0) scale(1.4);
    }
}
.blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}
@supports(filter: url('#goo')) {
    .blob-btn:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.4);
    }
}
/* Design Carousel Styles */
#carousel-container {
    will-change: transform;
    transition: transform 0.3s ease-out;
}
.design-card {
    will-change: transform;
}
.design-card .bg-cover {
    will-change: transform;
}
.certificates-section {
    background-color: #11121a;
}
.certificate-card {
    position: relative;
    min-width: 0;
}
.certificate-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(46, 53, 255, 0.12), transparent 35%);
    pointer-events: none;
}
.certificate-card h3 {
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.08;
}
.certificate-card > .relative {
    min-width: 0;
}
.certificate-label {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(253, 255, 239, 0.72);
}
@media (max-width: 768px) {
    .certificate-card {
        padding: 1.5rem;
    }
    .certificate-card h3 {
        font-size: 1.65rem;
        line-height: 1.1;
    }
    .certificate-card footer {
        width: 100%;
    }
    .certificate-card footer .inline-flex {
        width: 100%;
        justify-content: center;
    }
}
/* Experience mockup styles */
.experience-mockup {
    max-width: 620px;
}
.experience-mockup img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
}
@media (min-width: 1024px) {
    .experience-mockup {
        max-width: 560px;
        margin-left: 1rem;
    }
}
@media (max-width: 640px) {
    .experience-mockup {
        max-width: 420px;
    }
}
/* Mobile Menu Styles */
#mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
}
#mobile-menu.open {
    transform: translateX(0);
}
@media (min-width: 768px) {
    #mobile-menu {
        display: none !important;
    }
}
