/* Hero Swiper Customization */
.mySwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    width: 8px;
    height: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mySwiper .swiper-pagination-bullet-active {
    background: #f59e0b !important;
    width: 24px;
    border-radius: 4px;
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    width: 48px;
    height: 48px;
}

/* Section Decor */
#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,0.02) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Typography Enhancements */
.font-serif {
    letter-spacing: -0.02em;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
