/* Index page specific styles */
.hero-carousel-container {
    position: relative;
    overflow: hidden;
}

.hero-carousel-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-carousel-item.active {
    opacity: 1;
}

.scroll-container {
    animation: smoothScroll 30s linear infinite;
}

.scroll-container:hover {
    animation-play-state: paused;
}

@keyframes smoothScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .client-logos img {
        width: 100px;
    }
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #D9A74E;
    opacity: 0.8;
    pointer-events: none;
    z-index: 50;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out, width 0.2s, height 0.2s, opacity 0.2s;
}

@media (min-width: 1024px) {
    .lg\:justify-end {
        justify-content: center;
    }
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-icon {
    background: linear-gradient(135deg, #B8941F, #D9A74E);
    animation: pulse 2s infinite;
    width: 4rem !important;
    height: 4rem !important;
    flex-shrink: 0 !important;
}

@media (max-width: 768px) {
    .service-icon {
        width: 3rem !important;
        height: 3rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .service-icon {
        width: 3.5rem !important;
        height: 3.5rem !important;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-bg {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.stats-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.stats-card:hover::before {
    left: 100%;
}

.counter-number {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}