/* Hero Section Styles - Clean Version */
.iyeg-hero-section {
    height: calc(100vh - 6.5rem);
    /* height: 100vh; */
    margin-top: 6.5rem;
}


.hero-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fixed Text Content */
.hero-content-fixed {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    /* Center vertically using flex from parent */
}

/* Title Styles */
/* .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
} */

/* Subtitle Styles */
/* .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    color: #ffffff;
    margin: 0 auto 2rem auto;
    max-width: 900px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
} */

/* Button Styles */
.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #0066cc;
    background-color: #0066cc;
    color: #ffffff;
    margin-top: 0.5rem;
}

.hero-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateX(100%);
    transition: transform 0.8s ease-in-out;
}

.hero-slide.active {
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

/* Overlay for better text readability */
/*.hero-wrapper::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.4);*/
/*    z-index: 1;*/
/*    pointer-events: none;*/
/*}*/

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-fixed {
    animation: fadeUp 1s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .hero-content-fixed {
        width: 95%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
}

/* Landscape mode optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-content-fixed {
        padding: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}