body {
    background: linear-gradient(180deg, #F5F1EC 0%, #FFFFFF 100%);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    box-sizing: border-box;
}

.header .navbar {
    padding: 16px 0;
    box-shadow: 0px 6px 5px 0px #BFB47E40;
}

.header .navbar .navbar-brand {
    max-width: 180px;
}

.countdown-number {
    font-size: 20px;
    font-weight: 500;
    color: #20001B;
    background: linear-gradient(90deg, #EEE1CC 0%, #D7C5A8 100%);
    padding: 14px 26px;
    border-radius: 10px;
}

.first-section {
    background-image: url(../images/bg-icons.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0;
}

.bottom-section {
    background-image: url(../images/bg-2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 140px 0;
}

.heading span {
    font-family: "Bruno Ace", sans-serif;
}

.secondary-heading {
    font-weight: 700;
    font-size: 40px;
    line-height: 200%;
    max-width: 800px;
    margin: 0 auto;
    color: #1D1400;
}

.secondary-heading span {
    color: #F8881C;
}

.unlimited-slide-text {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    transform: rotate(-5deg);
    padding: 10px;
    box-shadow: 0px 4px 4px 0px #F8E6CA;
    margin: 70px 0;
    background-color: #fff;
}

.unlimited-slide-text .slide-text-animation {
    overflow-x: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    text-wrap: nowrap;
    scrollbar-width: none;
    color: #D9C8AC;
    font-size: 26px;
    font-weight: 700;
}

.animated-text-sapn1 {
    animation: slideText 15s linear infinite;
}

.animated-text-sapn2 {
    animation: slideText 15s linear infinite;
    animation-delay: -15s;
}


@keyframes slideText {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.heading {
    color: #1D1400;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 40px;
}

.heading span {
    color: #E6D5B8;
    background: #1D1400;
    border-radius: 10px;
    font-size: 48px;
    font-weight: 400;
    padding: 6px 14px;
}

.main-hero-card {
    box-shadow: 0px -1px 14px 0px #E0D6C48F;
    background: #FFFFFF;
    border: 12px solid #E6D5B8;
    border-radius: 24px;
    width: fit-content;
    padding: 18px;
    text-align: center;
}

.main-hero-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #20001B;
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-hero-card h2::before,
.main-hero-card h2::after {
    position: relative;
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/list\ icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.main-hero-card p {
    font-size: 18px;
    font-weight: 500;
    color: #592051;
    background: linear-gradient(180deg, #FFFFFF 0%, #FEF7E9 100%);
    border-radius: 0 0 20px 20px;
    margin: 0;
    padding: 10px;
}

.main-listing {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-listing li {
    position: relative;
    color: #20001B;
    font-size: 26px;
    font-weight: 500;
    padding-left: 60px;
}

.main-listing li::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 36px;
    height: 36px;
    background: url(../images/list\ icon.png) no-repeat center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.main-listing li span {
    font-weight: 700;
    text-wrap: nowrap;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.main-listing li .listing-span-1 {
    background-image: url(../images/Frame\ 1.png);
}

.main-listing li .listing-span-2 {
    background-image: url(../images/Frame\ 2.png);
}

.main-listing li .listing-span-3 {
    background-image: url(../images/Frame\ 3.png);
}

.coming-soon-badge {
    display: inline-block;
    animation: pulseFloat 2s infinite ease-in-out;
}

@keyframes pulseFloat {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    50% {
        transform: scale(1.05) translateY(-5px);
        opacity: 0.9;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .heading {
        font-size: 56px;
    }
}


@media (max-width: 992px) {
    .heading {
        font-size: 48px;
        text-align: center;
    }

    .heading span {
        font-size: 32px;
        display: inline-block;
        margin-top: 10px;
    }

    .secondary-heading {
        font-size: 32px;
        line-height: 150%;
        padding: 0 15px;
        text-align: center;
    }

    .main-listing li {
        font-size: 20px;
        padding-left: 50px;
    }

    .main-hero-card {
        margin: 20px auto;
        width: 100%;
    }

    .main-hero-card h2 {
        font-size: 18px;
        text-align: center;
        flex-direction: column;
    }

    .main-hero-card h2::before,
    .main-hero-card h2::after {
        width: 24px;
        height: 24px;
    }

    .main-hero-card p {
        font-size: 16px;
        text-align: center;
    }

    .hero-right {
        text-align: center;
        margin-top: 30px;
    }

    .countdown-number {
        font-size: 16px;
        padding: 10px 20px;
        margin-top: 10px;
    }

    .unlimited-slide-text {
        margin: 40px 0;
    }

    .unlimited-slide-text .slide-text-animation {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 36px;
    }

    .heading span {
        font-size: 24px;
    }

    .main-listing li {
        font-size: 18px;
        padding-left: 40px;
    }

    .main-listing li::before {
        width: 24px;
        height: 24px;
    }

    .slide-text-animation {
        font-size: 20px;
    }

    .navbar .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .bottom-section {
        padding: 40px 0;
    }

    .unlimited-slide-text {
        margin: 0 0 20px;
    }

    .unlimited-slide-text .slide-text-animation {
        font-size: 14px;
    }

    .secondary-heading {
        font-size: 20px;
    }
}