.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* Static Left Side */
.static-content {
    width: 35%;
    height: 100%;
    background: hsl(0, 0%, 100%);
    padding: 50px 60px 0 70px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.logo img {
    max-width: 170px;
    margin-bottom: 2rem;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pre-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.main-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 30px;
}

.main-title .highlight {
    color: #90c53f;
}

/* News Card Styles */

.news {
    margin-top: 60px;
    margin-bottom: 30px;
}

.news p {
    font-size: 14px;
}

.social-media-content p {
    font-size: 13px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.read-more {
    color: #90c53f;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}

/* Slider Right Side */
.hero-slider {
    width: 65%;
    height: 100%;
}

.slider-item {
    position: relative;
    height: 100vh;
}

.slider-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.location-info {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.location-info p {
    line-height: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.view-project-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #90c53f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    /* transition: background 0.3s; */
}

.view-project-btn:hover {
    background: #7ba832;
}

.overlay-vector {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.overlay-vector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay-vector-mobile {
    width: auto;
    right: 0;
    top: 30px;
    z-index: 0;
}

.overlay-vector-mobile img {
    opacity: 1 !important;
    width: 170px;
    height: auto;
    object-fit: contain;
}

/* Custom Dots Style */
.custom-dots {
    position: absolute;
    bottom: 40px;
    left: calc(35% + 40px);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.custom-dots .owl-dot {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 30px;
}

.custom-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.custom-dots .owl-dot.active span {
    background: white;
    border-radius: 30px;
    width: 30px;
    position: relative;
}

.custom-dots .owl-dot.active span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 31px;
    height: 8px;
    background: #90c53f;
    animation: loading-bar 5s ease-in-out forwards;
    border-radius: 30px;
}

.font-14 {
    font-size: 14px;
}

@keyframes loading-bar {
    0% {
        width: 8px;
    }

    100% {
        width: 31px !important;
    }
}

.custom-dots .owl-dot.active::after {
    /* content: '';
    display: inline-block;
    width: 15px;
    height: 2px;
    margin-left: 5px; */
}

/* Hide the line after the last dot */
.custom-dots .owl-dot:last-child.active::after {
    /* display: none; */
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        height: auto;
    }

    .static-content {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .hero-slider {
        width: 100%;
        height: 50vh;
    }

    .slider-item {
        height: 50vh;
    }

    .main-title {
        margin-top: 15px;
        font-size: 2.5rem;
    }

    .news {
        margin-top: 20px;
    }

    .location-info {
        left: 20px;
        bottom: 50px;
    }

    .custom-dots {
        left: 20px;
        bottom: 30px;
    }
}

@media (min-width: 1440px) and (min-height: 900px) {
    .hero-section {
        max-width: 1920px;
        margin: 0 auto;
    }

    .static-content {
        padding-left: 70px;
        padding-right: 50px;
        padding-top: 70px;
    }

    .main-title {
        font-size: 56px;
        margin-top: 100px;
    }

    .overlay-vector img {
        opacity: 1;
    }

    .news {
        margin-top: 130px;
        margin-bottom: 25px;
    }
}