/* Top Banner */

#top-banner-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

#top-banner-container::-webkit-scrollbar {
    display: none;
}

.banner-track {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: max-content;
}

.banner-track img {
    scroll-snap-align: center;
    width: 80vw;
    max-width: 250px;
    flex-shrink: 0;
    border-radius: 12px;
    background-color: #fff;
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-track img:hover {
    transform: scale(1.03);
}

@media (max-width: 400px) {
    .banner-track img {
        width: 90vw;
        max-width: 200px;
    }
}

@media (min-width: 401px) and (max-width: 767px) {
    .banner-track img {
        width: 85vw;
        max-width: 220px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .banner-track img {
        width: 45vw;
        max-width: 240px;
    }
}

@media (min-width: 1025px) {
    .banner-track img {
        width: 25vw;
        max-width: 250px;
    }
}

/* end Top Banner */

.navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    background-color: #000;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0.85;
}

@media (min-width: 992px) {
    .navbar-collapse {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0;

    }
}

/* Social Media Banner */

.social-media-banner {
    padding: 0 0;
    color: black;
}

.banner-title {
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 20px;
    padding-right: 24px;
}

.banner-description {
    font-size: 1.6rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
    padding-right: 24px;
}

.social-section {
    margin-top: 30px;
    padding-right: 24px;
}

.follow-text {
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: block;
}

.social-icons img {
    /* width: 32px;
    height: 32px; */
    margin-right: 12px;
    vertical-align: middle;
}

.phone-image {
    max-width: 350px;
}

@media (min-width: 992px) {
    .banner-description {
        margin: 0;
    }

    .phone-image {
        max-width: 100%;
    }
}

/* .bottom-banner {
    background-position: center;
    background-repeat: no-repeat;

    width: 100vw;
    max-width: 100vw;
    background-size: 15% auto;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);

    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 0;
} */

/* .bottom-banner {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 30vh;
    width: 100vw;
    position: relative;
    overflow: visible;
    background-size: cover;
    background-position: center;
}

.character-img {
    position: absolute;
    bottom: 0;
    left: 80%;
    transform: translateX(-50%);
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 25vw;
}

@media (max-width: 768px) {
    .character-img {
        max-width: 40vw;
    }
} */

.store-icon {
    height: 60px;
    width: auto;
    border: 1px solid #ccc;
    border-radius: 8px;              
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .store-icon {
        height: 48px;
    }
}

@media (max-width: 480px) {
    .store-icon {
        height: 36px;
    }
}

/* Bottom Banner */

.careers-banner {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /* background: linear-gradient(to bottom, #7bc51a, #316c0e); */
    min-height: 250px;
    position: relative;
}

.careers-banner-image {
    text-align: right;
    margin-right: 100px;
    position: absolute;
    bottom: 0;
}

.careers-banner-image img {
    width: 180px;
    height: auto;
}

@media (max-width: 768px) {
    .careers-banner {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        min-height: 420px;
    }

    .careers-banner-image {
        text-align: center;
        margin: 0;
    }

    .careers-banner-image img {
        width: 200px;
        margin-top: auto;
    }
}

/* SharifAbad video */

.video-frame {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: auto;
    margin-bottom: 30px;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.play-button i {
    font-size: 64px;
    color: #000;
}

.custom-play-icon {
    width: 64px;
    height: 64px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.custom-play-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

.video-element {
    width: 100%;
    height: auto;
    display: block;
}

/* end SharifAbad video */