﻿/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color); 
    overflow: hidden;
}

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5); 
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

.hero-swiper2 .swiper-slide .line {
    width: 128px;
    height: 1px;
    background-color: white;
}

.slide{
    padding-bottom: 60px;
}

/* Hero title */
/*.hero h2 {
        margin: 0;
        font-size: 56px;
        font-weight: 700;
        font-family: var(--nav-font, sans-serif);
        color: #fff;
    }*/
/*.hero h2 span {
            color: var(--accent-color, #00bcd4);
        }*/
/* Hero subtitle */
/*.hero p {
        margin: 10px 0 0 0;
        font-size: 24px;
        color: rgba(255, 255, 255, 0.7);
    }*/
/* Icon box styling */
/*.hero .icon-box {
        padding: 30px 20px;
        transition: 0.3s ease-in-out;
        border: 1px solid rgba(255, 255, 255, 0.3);
        height: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);*/ /* subtle background for visibility */
/*}

        .hero .icon-box i {
            font-size: 32px;
            line-height: 1;
            color: var(--accent-color);
        }

        .hero .icon-box h3 {
            font-weight: 700;
            margin: 10px 0 0 0;
            font-size: 20px;
            line-height: 26px;
        }

            .hero .icon-box h3 a {
                color: rgba(255, 255, 255, 0.8);
                transition: 0.3s ease-in-out;
                text-decoration: none;
            }

        .hero .icon-box:hover {
            border-color: var(--accent-color);
        }

            .hero .icon-box:hover h3 a {
                color: var(--accent-color);
            }*/
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}
