/* Maha Swagat Section Styles */
.maha-swagat-section {
    padding-inline: 20px;
    margin-bottom: 60px;
}

.maha-swagat-section .displayImgs {
    width: 100%;
}

/* Header Styles */
.maha-swagat-section__header {
    margin-bottom: 30px;
}

.maha-swagat-section__title {
    color: #8b2f8f !important;
}

.maha-swagat-section__location {
    background: url(/assets/mumbai/images/svg/map-marker.svg) 0 0 no-repeat;
    padding-left: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 1rem;
}

.maha-swagat-section__location-icon {
    width: 18px;
    height: 18px;
    color: #8b2f8f;
}

.maha-swagat-section__location-text {
    font-weight: 600;
    line-height: 1rem;
}

/* Content Styles */
.maha-swagat-section__content {
    margin-bottom: 40px;
}

.maha-swagat-section__description {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 0;
}


.maha-swagat-section__read-more {
    display: inline-block;
    background: none;
    border: none;
    color: #8b2f8f;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.maha-swagat-section__read-more:hover {
    color: #6b1f6f;
    text-decoration: underline;
}

/* Carousel Styles */
.maha-swagat-section__carousel {
    position: relative;
    margin-top: 40px;
}

@media (min-width:480px){
    .maha-swagat-section__carousel .swiper-wrapper{
        padding-bottom: 60px;
    }
}


.maha-swagat-swiper {
    width: 100%;
}

.maha-swagat-section__slide {
    width: auto;
    height: auto;
    border-radius: 4px;
    overflow: hidden;
}

.maha-swagat-section__image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    width: 100%;
}

/* Controls Container */
.maha-swagat-section__controls {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    bottom: -2rem;
    transform: translateY(-50%);
}

/* Progress Bar Styles */
.maha-swagat-section__progress-container {
    flex: 1;
    height: 4px;
    background: linear-gradient(to right, #e91e63 0%, #9c27b0 25%, #2196f3 50%, #00bcd4 75%, #4caf50 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}


.maha-swagat-section__progress-bar {
    background: rgba(201, 201, 201, .6);
    height: 2px !important;
    border-radius: 0;
    bottom: 20px !important;
    width: calc(100% - 212px) !important;
    z-index: 13 !important;
}

.maha-swagat-section__progress-bar .swiper-scrollbar-drag {
    background-image: linear-gradient(270deg, #007FA0 0%, #4F469D 20.67%, #962B81 68.18%, #BE3A56 100%);
    height: 4px;
    border-radius: 0;
    margin-top: -1px
}

/* Navigation Styles */
.maha-swagat-section__swipperButton {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.maha-swagat-section__swiperButtonPrev,
.maha-swagat-section__swiperButtonNext {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    position: relative;
    overflow: hidden;
}

.maha-swagat-section__swiperButtonPrev::after,
.maha-swagat-section__swiperButtonNext::after {
    font-size: 18px;
    font-weight: bold;
}

.maha-swagat-section__swiperButtonPrev::before,
.maha-swagat-section__swiperButtonNext::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.maha-swagat-section__swiperButtonPrev:hover::before,
.maha-swagat-section__swiperButtonNext:hover::before {
    opacity: 1;
}

.maha-swagat-section__swiperButtonPrev:hover,
.maha-swagat-section__swiperButtonNext:hover {
    border-color: #8b2f8f;
    color: #8b2f8f;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(139, 47, 143, 0.2);
}

.maha-swagat-section__swiperButtonPrev:active,
.maha-swagat-section__swiperButtonNext:active {
    transform: scale(0.95);
}

.maha-swagat-section__swiperButtonPrev.swiper-button-disabled,
.maha-swagat-section__swiperButtonNext.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Scrollbar Styles */
.maha-swagat-section__swiper-scrollbar {
    display: none;
}

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
    .maha-swagat-section {
        padding-top: 40px;
        padding-inline: 20px;
    }

    .maha-swagat-section__title {
        font-size: 2rem;
    }

    .maha-swagat-section__description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Mobile View (max-width: 767px) */
@media (max-width: 767px) {
    .maha-swagat-section {
        padding: 30px 16px;
    }

    .maha-swagat-section__header {
        margin-bottom: 20px;
    }

    .maha-swagat-section__title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .maha-swagat-section__location {
        font-size: 0.9rem;
    }

    .maha-swagat-section__content {
        margin-bottom: 30px;
    }

    .maha-swagat-section__description {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: left;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 12px;
    }



    .maha-swagat-section__carousel {
        margin-top: 30px;
    }

    .maha-swagat-section__image {
        border-radius: 4px;
        width: 100%;
    }

    .maha-swagat-section__controls {
        margin-top: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .maha-swagat-section__progress-container {
        order: 2;
    }

    .maha-swagat-section__swipperButton {
        order: 1;
        justify-content: center;
    }

    .maha-swagat-section__swiperButtonPrev,
    .maha-swagat-section__swiperButtonNext {
        width: 44px;
        height: 44px;
    }
}

.maha-swagat-section__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
    transition: all 0.3s ease;
}

.maha-swagat-section__description.expanded {
    -webkit-line-clamp: unset;
    display: block;
    /* fully expand */
}


/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .maha-swagat-section__title {
        font-size: 1.5rem;
    }

    .maha-swagat-section__image {
        height: 250px;
    }

    .maha-swagat-section__swipperButton,
    .maha-swagat-section__progress-bar {
        display: none;
    }
}

.dap-loc {
    background: url(/assets/mumbai/images/svg/map-marker.svg) 0 5px no-repeat;
    line-height: 33px;
    font-weight: 1.1rem;
    font-size: 1rem;
    padding-left: 1.2rem;
    color: #666666;
}

/*Dropdown Seciton*/
.artWork .reportRow {
    max-height: 52vh;
    height: 52vh;
}

.artWork .dropDowns .reportInfo {
    max-height: 50vh;
    height: 100%;
    vertical-align: middle;
    overflow-y: auto;
    align-content: center;
    padding-right: 0.5rem;
    border-bottom: 1px solid #EFF0F6;
}

.artWork .artWorkTile {
    border: 1px solid #EFF0F6;
    box-shadow: 0px 5px 14px 0px #080F340A;
    padding-block: 1rem;
    padding-inline: 1.5rem !important;
    transition: all 200ms ease;
    padding-right: 36px;
    cursor: pointer;
    background-size: 14px;
    margin-bottom: 0.75rem;
}

.artWork .artWorkSlab {
    display: flex;
    justify-content: start;
    width: 100%;
}

.artWork .artWorkTile .artWorkHeader {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url(/assets/mumbai/images/svg/faq-arrow-open.svg) right center no-repeat;
}

.artWork .artWorkTile.active .artWorkHeader {
    background: url(/assets/mumbai/images/svg/faq-arrow-close.svg) right center no-repeat;
}

.artWork .artWorkTile .artWorkHeader h4 {
    font-size: 1.375em;
    color: #000;
    font-family: "adanisemibold";
    margin-right: 1rem;
}

.artWork .artWorkTile .artWorkHeader .artistImg {
    aspect-ratio: 1 / 1;
    width: 60px;
    margin-right: 2.5rem;
}

.artWork .artWorkTile .artWorkHeader .category {
    line-height: 33px;
    font-weight: 1.1rem;
    font-size: 1rem;
    color: #666666;
    margin-right: 1rem;
}

.artWork .artWorkTile .innerContent {
    margin-top: 1.5rem;
}

.artWork .imgBox {
    text-align: center;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: url(/assets/mumbai/images/dapring.png) center center no-repeat;
    background-size: cover;
}

.artWork .imgBox .imgs {
    z-index: -1;
    opacity: 0;
    height: calc(100% - 2rem);
    transition: all 1s ease-in-out;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.artWork .imgBox .vids {
    z-index: -1;
    opacity: 0;
    height: calc(100% - 2rem);
    transition: all 1s ease-in-out;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.artWork .imgBox .imgs.active {
    opacity: 1;
}

@media (max-width:768px) {
    .artWork .artWorkTile {
        padding-inline: 0.5rem !important;
    }

    .artWork {
        padding-bottom: 40px !important;
    }

    .artWork .reportRow {
        max-height: unset;
        height: unset;
    }

    .artWork .reportInfo {
        margin-top: 2rem;
    }

    .artWork .artWorkSlab {
        justify-content: space-between;
    }

    .dap-loc {
        width: min-content;
    }
}

@media (min-width:768px) {
    .artWork .dropDowns .reportInfo::-webkit-scrollbar {
        width: 6px;
        /* scrollbar width */
    }

    .artWork .dropDowns .reportInfo::-webkit-scrollbar-track {
        background: transparent;
        /* transparent background */
    }

    .artWork .dropDowns .reportInfo::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.35);
        /* thumb color */
        border-radius: 6px;
    }

    /* Remove up/down arrows */
    .artWork .dropDowns .reportInfo::-webkit-scrollbar-button {
        display: none;
        height: 0;
        width: 0;
    }
}


/*ROTU section*/
.ROTU_section {
    box-shadow: -1px 1px 25.1px 3px #0000000D;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 100px;
    width: 100%;
    overflow: hidden;
    margin-block: 40px;
    background: linear-gradient(270deg, #007FA0 0%, #4F469D 20.67%, #962B81 68.18%, #BE3A56 100%);
}

/*.ROTU_section::before {
        content: '';
        background-image: url(/media/images/DAP/wave.png);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: -65px;
        width: 480px;
        height: 175px;
        left: -144px;
        transform: rotate(-205deg) scaleY(-1);
        opacity:80%;
    }

    .ROTU_section::after {
        content: '';
        background-image: url(/media/images/DAP/wave.png);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        right: -150px;
        width: 480px;
        height: 175px;
        bottom: -10px;
        transform: rotate(-205deg) scaleX(-1) scaleY(-1);
        opacity: 80%;
    }*/

.ROTU_section .ROUT_block {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ROTU_section .ROUT_block h3 {
    font-weight: 600;
    font-size: 26px;
    leading-trim: NONE;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
    color: #fff;
}

.ROTU_section .ROUT_block::before {
    content: '';
    width: 100px;
    border-bottom: 2px solid #fff;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    position: absolute;
}

.ROTU_section .ROUT_block p {
    font-size: 18px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    max-width: 70%;
    color: #fff;
}

.ROTU_section .ROUT_block p span {
    display: inline;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
}

@media (max-width:768px) {
    .ROTU_section {
        padding-block: 150px;
    }

    .ROTU_section .ROUT_block p {
        max-width: 100%;
    }
}

/*Explore More Section*/
.exploreMore_container .exploreMore_section {
    box-shadow: -1px 1px 25.1px 3px #0000000D;
    position: relative;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 40px;
}

.exploreMore_section .exploreMore_content {
    padding: 50px;
    text-align: left;
}

.exploreMore_section .exploreMore_content h3 {
    margin-bottom: 1.5rem;
    font-size: 26px;
    font-weight: 600;
    leading-trim: NONE;
    line-height: 34px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #424242;
}

.exploreMore_section .exploreMore_content h3 span {
    color: #B000CD;
}

.exploreMore_section .exploreMore_content p {
    margin-bottom: 1.5rem;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #424242;
}

.exploreMore_section .exploreMore_img {
    object-fit: contain;
    height: 100%;
    max-height: 376px;
}

@media (max-width:1200px) {
    .exploreMore_container .exploreMore_section {
        display: flex;
        gap: 20px;
    }

    .exploreMore_section .exploreMore_img {
        object-fit: cover;
        height: auto;
        max-height: unset;
        max-width: 50%;
    }

    .artWork .artWorkTile .artWorkHeader {
        background: unset;
    }

    .artWork .artWorkTile.active .artWorkHeader{
        background: unset;
    }
}

@media (max-width:1140px) {
    .exploreMore_container .exploreMore_section {
        flex-direction: column;
        gap: 0px;
    }

    .exploreMore_section .exploreMore_img {
        object-fit: cover;
        height: auto;
        width: 100%;
        max-height: 500px;
        max-width: unset;
    }
}

/*About Video section*/
.aboutDeparture .videoBox {
    width: 100%;
    position: relative;
}

.aboutDeparture .videoBox video {
    width: 100%;
}

.aboutDeparture .videoBox .custom-video__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    background: transparent;
    border: 0;
}

.aboutDeparture .videoBox.is-playing .custom-video__play {
    display: none;
}

/*Marquee*/
.DAPmarquee {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    position: fixed;
    top: 0;
    z-index: 20;
    background: linear-gradient(270deg, #007FA0 0%, #4F469D 20.67%, #962B81 68.18%, #BE3A56 100%);
}

.DAPmarquee .marquee__track {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

.DAPmarquee .marquee__track span {
    font-weight: 500;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 19.51px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
}

.DAPmarquee .marquee:hover .marquee__track {
    animation-play-state: paused;
}

.headerMarqueeShift {
    top: 24px;
}


@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}