/* custom css */

.ehc-vertical .carousel-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.ehc-vertical .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.social-links {
    display: flex;
    gap: 25px;
    font-size: 2.1rem;
    position: absolute;
    margin-top: 60px;
}

.social-links {
    font-size: 1.8rem;
}

/* X icon specific styles for side navigation */
.social-links a .fa-x-twitter:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    vertical-align: -0.125em;
}

.social-links a:hover .fa-x-twitter:before {
    opacity: 1;

}


.ehc-vertical .slide.active {
    opacity: 1;
    visibility: visible;
}

.ehc-vertical .slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ehc-vertical .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.ehc-vertical .content {
    position: relative;
    z-index: 3;
    padding: 13rem 13rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ehc-vertical .header {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.ehc-vertical .main-content {
    max-width: 650px;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(7.5px);
    padding: 3rem;
    border-radius: 10px;
}

.ehc-vertical .counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    width: 50%;
}

/* .ehc-vertical .counter-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 1rem;
} */
.ehc-vertical .counter-line {
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #ccc;
    /* Background for the progress line */
}

.ehc-vertical .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #ffffff;
    /* Progress bar color */
    width: 0%;
    /* Initially 0% */
}

.ehc-vertical .title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.ehc-vertical .explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ehc-vertical .explore-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
}

.ehc-vertical .nav-buttons {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 1rem;
    z-index: 10;
    left: 31rem;
}

.ehc-vertical .nav-button {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.ehc-vertical .nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.ehc-vertical .vertical-logo {
    position: absolute;
    right: 1.9rem;
    top: 7rem;
    /* transform: rotate(293deg); */
}

@media (max-width: 768px) {
    .ehc-vertical .content {
        padding: 2rem;
    }

    .ehc-vertical .main-content {
        padding: 2rem 1rem 6rem 1rem;
    }

    .ehc-vertical .header {
        font-size: 3.5rem;
    }

    .ehc-vertical .title {
        font-size: 2.5rem;
    }

    .ehc-vertical .vertical-logo {
        display: none;
    }

    .ehc-vertical .nav-buttons {
        left: 2rem;
        top: 83%;
    }

    .ehc-vertical .explore-btn {
        width: 100%;
        justify-content: center;
    }

    .ehc-vertical .counter {
        width: 100%;
    }
}

/* custom css ends */