/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
}

/* Header */
#main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    padding: 20px 0;
}

#main-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 5px 0;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: auto;
    margin-right: 10px;
    filter:invert(100%);
}

.nav-list {
    list-style: none;
    display: none; /* Ensure nav-list is hidden by default */
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease; /* [ADDED] Add transition effects */
}

.nav-list.active {
    display: block; /* Show nav-list when active class is added */
    opacity: 1;
    transform: translateY(0); /* [ADDED] Smooth transition on opening */
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    animation: slideDown 0.5s ease forwards; /* [ADDED] Animation for dropdown */
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.nav-list li {
    margin: 10px 0;
    text-align: center;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #1db954;
}

.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 1100;
    transition: transform 0.3s ease;
}

.hamburger-menu.active {
    transform: rotate(90deg); /* [ADDED] Rotate the hamburger icon when active */
}

.anim-text-flow{
    background: linear-gradient(90deg, #e933ff, #ff3333, #334dff, #e933ff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textflow 5s linear infinite;
}
.promo-band{
    position: absolute;
    z-index: 100;
    top: 90px;
    width: 100%;
    background-image: linear-gradient(0.25turn, rgba(124, 0, 255, 1) 0%, rgba(255, 0, 220, 1) 100%);
    text-align: center;
    height: 60px;
    line-height: 60px;
}
.promo-text{
    font-size: 18px;
}
.see-deals{
    background: #000;
    padding: 8px 15px;
    margin-left: 10px;
    color: #fff;
    cursor:pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 22px;

}
.see-deals:hover{
    color:#fff;
    text-decoration: none;
}
.hero-section {
    position: relative;
    padding-top: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding-bottom:5.5rem;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateZ(0);
    will-change: transform;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #999;
    line-height: 1.5rem;
}

.hero-section .btn {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background-color: #1db954;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.zoom-button {
    transition: transform 0.3s ease;
}

.zoom-button:hover {
    transform: scale(1.1);
    animation-timing-function: ease-in-out;
}

.hero-section .btn:hover {
    background-color: #17a74a;
}

/* Producer Cards */
.producer-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgb(26 26 26 / 70%);
    padding: 20px;
    border-radius: 10px;
    width: 480px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.producer-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.card-body {
    flex: 1;
    padding:0.4rem
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.card-text {
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

.genre-label {
    margin: 5px;
    font-size: 0.9rem;
}

.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #111;
}

.process-section {
    padding: 50px 0;
}

.process-step {
    width: 23%;
    color: #fff;
}

.process-icon {
    width: 145px;
    padding-top: 13px;
    padding-bottom: 8px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.5;
}
.lb-container{
    position: relative;
    height: 185px;
}
.lightbulb,
.lightbulb2 {
    position: absolute;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    left: 50%;
    top: 50px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0px 10px white;
    background: white;
    transition: all 0.5s ease-in-out;
}

.lightbulb2::before {
    position: absolute;
    content: "";
    width: 86px;
    border-top: 45px solid white;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    left: -3px;
    top: 52px;
    transition: all 0.5s ease-in-out;
}

.lightbulb2::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 5px;
    background: grey;
    top: 103px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    box-shadow: 0px 10px 0 0 grey, 0px 20px 0 0 grey;
}

.lb::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 41px;
    background: grey;
    top: 142px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: 1;
}

.lightbulb, .lightbulb:focus {
    z-index: 1;
    outline: unset;
    border: none;
}

.lightbulb:hover {
    background: #ffe770;
    box-shadow: 0 0 0 10px #ffe770, 0 0 70px -2px #ffcd00;
    transition: all 0.5s ease-in-out;
}

.lightbulb:hover + .lightbulb2::before {
    border-top-color: #ffe770;
    transition: all 0.5s ease-in-out;
}
.zero{
    color: #ffffff;
    font-size: 42px;
    line-height: 1.55;
    font-weight: 700;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    background: linear-gradient(90deg, #e933ff, #ffb400, #ff3333, #334dff, #e933ff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textflow 5s linear infinite;
}
.clients{
    color: #fff !important;
    margin-bottom: 40px !important;
    font-size:19px !important;
}
.labels{
    align-items: center;
}
.label{
    margin: 0 20px;
}

 .footer-section {
     background-color: #111 !important;
     background-color: #111 !important;
 }
.footer-logo-img {
    width: 100px;
    height: auto;
}
.footer-links ul {
    padding-left: 0;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    text-decoration: none;
    color: #bbb;
}
.footer-links ul li a:hover {
    color: #1db954!important;
}
.footer-social ul {
    padding-left: 0;
}
.footer-social ul li {
    list-style: none;
}
.footer-social ul li a {
    color: #bbb;
    transition: color 0.3s;
}
.footer-social ul li a:hover {
    color: #1db954!important;
}
.trademark{
    font-size:12px;
}
.quick-links{
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #747474;
}
.list-unstyled{
     font-size: 14px;
     line-height: 23px;
 }
@keyframes textflow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Show nav-list in desktop view */
@media screen and (min-width: 769px) {
    .nav-list {
        display: flex; /* Ensure nav-list is visible in desktop view */
        flex-direction: row;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-list li {
        margin: 0 20px;
    }
}

.whatsapp-header {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 13px;
    z-index: 999999;
    width: 70px;
}
.whatsapp-header img {
    width: 100%;
    display: block;
}

.banner-container{
    position: fixed;
    width: auto;
    left: 0;
    bottom: 0;
    z-index: 990;
    height: 110px;
}

.banner {
    width: 430px;
    height: 75px;
    background-image: linear-gradient(to right,#050505 40%,transparent 100%);
    color: white !important;
    display: flex;
    align-items: center;
    font-size: 15px;
    padding-left: 10px;
    opacity: 0;
    text-decoration: none;
    color: inherit;
    border-radius: 25px;
    position: absolute;
    top: 20px;
    transition: opacity 1s ease-in-out,transform 1s ease-in-out;
}

.banner.show {
    opacity: 1;
    transform: translateY(0);
}

.banner.hidden {
    opacity: 0;
    transform: translateY(20px);
}

.banner img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 15px;
}

.text-container {
    display: flex;
    flex-direction: column;
    font-family: "Open Sans",sans-serif;
    flex: 1;
    line-height: 20px;
}

.city {
    font-size: 13px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}

.city .fi {
    margin-left: 5px;
}

.product-name {
    font-size: 14px;
    margin-bottom: 3px;
}

.time-trustpulse {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: gray;
}

.time {
    margin-right: 5px;
}

.trustpulse-wrapper {
    display: flex;
    align-items: center;
}

.trustpulse-wrapper img {
    width: 12px;
    height: 12px;
    margin-left: 5px;
}