

/* heroSection */
/* Hero Section */
/* Hero Section - Full Screen */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

/* Navbar Overlay */
.nav-main-container {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10; /* Ensures navbar is above carousel */
    /* background-color: rgba(220, 53, 69, 0.85); */
}

/* Main Carousel Image */
.carousel img {
    height: 100vh; /* Full screen height */
    object-fit: cover;
}

/* Thumbnail Row (Positioned at Bottom 20%) */
.thumbnail-row {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    padding: 8px 15px;
    border-radius: 10px;
}

/* Thumbnail Cards */
.thumbnail-card {
    width: 80px;
    height: 60px;
    background: white;
    padding: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s;
}

    .thumbnail-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }

    /* Hover Effect */
    .thumbnail-card:hover {
        transform: scale(1.1);
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.8);
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 992px) {
    .subscription-main-sec {
        padding-top: 330px !important;
    }
}
