.banner-area {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.desktop-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile banner desktop par hidden rahega */

.mobile-banner {
    display: none;
}

/* Mobile View */

@media screen and (max-width: 767px) {

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
        position: relative;
        padding: 12px 18px 0;
        background:
            linear-gradient(
                rgba(255, 255, 255, 0.94),
                rgba(255, 255, 255, 0.94)
            ),
            url("assets/images/mobile-background.jpg")
            center / cover no-repeat;
    }

    .mobile-banner-content {
        position: relative;
        z-index: 2;
    }

    .mobile-banner-content h1 {
        margin: 0 0 20px;
        color: #ff7200;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 50px;
        font-weight: 900;
        line-height: 0.85;
        letter-spacing: -3px;
    }

    .mobile-banner-content h1 span {
        display: block;
    }

    .mobile-tagline {
        width: 100%;
        margin-bottom: 22px;
        padding: 10px 12px;
        border-radius: 0 25px 25px 25px;
        background: linear-gradient(
            90deg,
            #00683e,
            #36a900
        );
        color: #ffffff;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.35;
        text-align: center;
        letter-spacing: 0.3px;
    }

    .mobile-location {
        display: flex;
        align-items: center;
        gap: 11px;
        margin-bottom: 24px;
        color: #111111;
        font-size: 27px;
        line-height: 1.1;
    }

    .location-pin {
        width: 25px;
        height: 25px;
        position: relative;
        flex-shrink: 0;
        background: #ff7200;
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg);
    }

    .location-pin::after {
        content: "";
        width: 9px;
        height: 9px;
        position: absolute;
        top: 8px;
        left: 8px;
        background: #ffffff;
        border-radius: 50%;
    }

    .mobile-event-box {
        width: 100%;
        margin-bottom: 17px;
        overflow: hidden;
        border: 1.5px solid #ff7200;
        border-radius: 10px;
        background: #ffffff;
    }

    .mobile-event-heading {
        padding: 7px 14px;
        background: linear-gradient(
            90deg,
            #00683e,
            #39ac00
        );
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
    }

    .mobile-event-date {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 7px 14px;
        color: #111111;
        font-size: 16px;
        line-height: 1;
    }

    .mobile-event-date sup {
        font-size: 45%;
        vertical-align: super;
    }

    .calendar-icon {
        flex-shrink: 0;
        color: #ff7200;
        font-size: 26px;
    }

    .mobile-banner-image {
        width: calc(100% + 36px);
        margin-top: 20px;
        margin-left: -18px;
    }

    .mobile-banner-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* Small Mobile */

@media screen and (max-width: 390px) {

    .mobile-banner-content h1 {
        font-size: 45px;
    }

    .mobile-location {
        font-size: 23px;
    }

    .mobile-event-heading {
        font-size: 14px;
    }

    .mobile-event-date {
        font-size: 18px;
    }
}