/* Reset for hero carousel only */
.hero-carousel * {
    box-sizing: border-box;
}

/* Prevent site.css hero-pattern from affecting carousel */
.hero-carousel {
    background: none !important;
    background-image: none !important;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.hero-carousel {
    position: relative;
    height: 100vh;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1e3a8a;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    max-width: 300px;
    max-height: 180px;
    width: auto;
    height: auto;
    margin-bottom: 0;
    filter: brightness(1.5) contrast(1.3) drop-shadow(0 4px 8px rgba(0,0,0,0.8));
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-company {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-location {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f1f5f9;
}

.hero-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-tag {
    background: rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 15;
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 20px;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 15;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: rgba(16, 185, 129, 0.9);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .hero-company {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-nav {
        padding: 0 1rem;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-logo {
        max-width: 200px;
        max-height: 120px;
    }
}