/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 48px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    gap: 10px;
}

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

.hero-dot.active {
    background: white;
}

/* Text Animations */
/* Company Info */
.company-info {
    padding: 80px 0;
    text-align: center;
}

.company-info h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    padding: 40px;
    background: #f5f5f5;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-slider,
    .hero-slide {
        height: 100%;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .company-info h2 {
        font-size: 32px;
    }
}
