/* CSS Reset - Eric Meyer v2.0 | 20110126 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "EB Garamond", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Hero Section (First Viewport) */
.hero {
    height: 100vh;
    background: linear-gradient(to right, #111, #444);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: -80px;
    /* Hidden initially */
    left: 0;
    width: 100%;
    background: transparent;
    color: #ca9f73;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.4s ease;
    z-index: 1000;
}

/* Visible class */
.nav-visible {
    top: 0;
}

/* Hamburger */
.hamburger {
    font-size: 26px;
    cursor: pointer;
    background: none;
    border: none;
    color: #ca9f73;
}

/* Menu */
.nav-links {
    list-style: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #250a08;
    width: 220px;
    display: none;
    flex-direction: column;
}

.nav-links li a {
    display: block;
    padding: 15px;
    color: #ca9f73;
    text-decoration: none;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-active {
    display: flex;
}


footer {
    background: #5a130c;
    color: #f0de82;
    text-align: center;
    padding: 20px 10px;
    margin-top: 0px;
}

.nav-links {
    display: none;
}

.nav-active {
    display: flex;
}

/* Desktop Styling */
@media (min-width: 992px) {
    .nav-links {
        top: 70px;
        width: 300px;
    }
}

.banner {
    /* background:url(../img/banner_bg.png) no-repeat top center  #250a08; */
    background-color: #250a08;
    background-size: auto 100%;
    height: 100vh;
    text-align: center;
}

.banner-logo {
    text-align: center;
    max-height: 40vh;
    padding-top: 60px;
}

.header-logo {
    max-width: 200px;
}

.viewports {
    margin: -5px 0px 0px 0px;
    padding: 0px;
    position: relative;
}

#three-words-one-vision {
    height: calc(100vh - 0px);
    background: url(../img/cardbg.png) no-repeat center top;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vp2-img {
    width: 100%;
    min-height: 100vh;
    height: 100%;
}

.container-video-tile {
    width: 70%;
    margin: 0px auto;
}

.pgTitle {
    text-align: center;
    color: #ac8d4e;
    font-size: 30px;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.subTitle {
    text-align: center;
    color: #ac8d4e;
    font-size: 20px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}


.glass {
    background: rgba(255, 255, 255, 0.1);
    /* Transparent white */
    backdrop-filter: blur(10px);
    /* Blur background */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.content-vp {
    position: absolute;
    left: 0px;
    width: 100%;
    z-index: 2;
    padding: 60px 0px;
    top: 200px;
}

.content-normal {
    position: absolute;
    left: 0px;
    width: 100%;
    z-index: 2;
    padding: 60px 0px;
    top: 0px;
    height: 100%;
    display: flex;
    align-items: center;
}

.content-abs {
    position: absolute;
    left: 0px;
    width: 100%;
    z-index: 2;
    padding: 60px 0px;
    top: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.eq-height {
    display: flex;
    flex-direction: column;
}

.event-video {
    width: 100%;
    border: 2px ridge #ca9f73;
    margin-bottom: 30px;
    flex: 1;
}

.event-video>video {
    width: 100%;
}

.event-video>video.h100 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}


.swiper {
    width: 60%;
    height: auto;
    transform-style: preserve-3d;
    position: relative;
    z-index: 0;
    display: inline-block;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;

}

.swiper-slide img {
    display: block;
    width: 100%;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}

.gif-bg {
    position: relative;

}

.dance-img {
    position: absolute;
    width: 35%;
    background: url(../img/4_story_gifCard.png) no-repeat center center;
    /* background:#f0ebde; */
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1));
    background-size: auto 100%;
    z-index: 3;
    right: 80px;
    top: -60px;
    padding: 10px;
    /* box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.4); */
    border-radius: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    bottom: 100px;
    top: unset;
    border: 2px solid #ca9f73;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    padding: 10px;
    color: #ca9f73;
    background: transparent;
}

@media screen and (max-width: 767.5px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
        padding: 5px;
    }

    .swiper-button-next {
        right: 0px !important;
    }

    .swiper-button-prev {
        left: 0px !important;
    }

}

.bottom-button {
    position: absolute;
    bottom: 5%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    left: 0px;
    gap: 30px;
}


.bottom-button>a {
    padding: 15px 40px;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    font-family: "EB Garamond", serif;
    font-weight: 400;
}

.bottom-button>a.mahroom {
    background-color: rgba(54, 21, 10, 0.8);
    color: white;
}

.bottom-button>a.yellow {
    background-color: rgba(202, 159, 115, 0.8);
    color: #250a08;
}

@media screen and (max-width: 767.5px) {
    .viewports {
        height: 100vh;
    }

    .dance-img {
        width: 70%;
        right: 0px;
        left: 0px;
        margin: 0px auto;
        top: 210px;
        z-index: 1;
    }

    .swiper {
        width: 100%;
        position: relative;
        z-index: 3;
    }

    #explore {
        height: 100vh;
    }

    .vp2-img {
        width: 100%;
        height: 100vh;
    }

    .bottom-button {
        gap: 15px;
    }

    .bottom-button>a {
        padding: 10px 20px;
        text-decoration: none;
        font-size: 16px;
    }

    .content-normal {
        align-items: flex-start;
    }
}

.vp-content {
    position: absolute;
    left: 0px;
    top: 25%;
    width: 100%;
    font-family: "EB Garamond", serif;
}

.vp-wrapper {
    width: 64%;
    margin: 0px auto;
    font-family: "EB Garamond", serif;
    display: flex;
    justify-content: space-between;
}

.vp-wrapper {
    width: 64%;
    margin: 0px auto;
    font-family: "EB Garamond", serif;
    display: flex;
    justify-content: space-between;
}

.vp-wrapper-lg {
    width: calc(100% - 30px);
    margin: 0px auto;
    font-family: "EB Garamond", serif;
    display: flex;
    justify-content: space-between;
}

.vp-wrapper-event {
    width: calc(100% - 30px);
    margin: 0px auto;
    font-family: "EB Garamond", serif;
    text-align: center;
}

.events-image {
    margin-bottom: 30px;
    width: 450px;
    margin: 0px auto;
}

@media screen and (max-width: 480.5px) {
    .events-image {
        width: 100%;
    }

}



.events-image img {
    max-width: 100%;
    border: 2px solid white;
    border-radius: 30px;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5));
}

.call-details {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.call-details>img {
    width: 30px;
    height: auto;
}

.call-details p {
    font-size: 20px;
    color: #440e00;
    line-height: 30px;
}

.call-details p>a {
    font-size: 20px;
    color: #440e00;
    text-decoration: none;
}

.call-details p>span {
    display: block;
    font-style: italic;
    color: #625039;
    font-size: 30px;
    margin-bottom: 15px;
}

.first_col {
    margin-top: 10%;
}

.second_col {
    width: 40%;
    text-align: center;
    font-size: 30px;
}

.mySwiper2 {
    width: 80%;
}

.mySwiper2 .swiper-wrapper {
    padding-bottom: 40px;
}

.mySwiper2 .swiper-pagination-bullet {
    background-color: #957555;
    width: 10px;
    height: 10px;
    opacity: 0.4;
    border-radius: 5px;
}

.mySwiper2 .swiper-pagination-bullet-active {
    background-color: #957555 !important;
    width: 30px;
    opacity: 1;
}


.mySwiper3 .swiper-pagination-bullet {
    background-color: #957555;
    width: 10px;
    height: 10px;
    opacity: 0.4;
    border-radius: 5px;
}

.mySwiper3 .swiper-pagination-bullet-active {
    background-color: #957555 !important;
    width: 30px;
    opacity: 1;
}


@media screen and (max-width: 767.5px) {
    .home-video {
        height: 80%;
    }

    .second_col {
        display: none;
    }

    .vp-wrapper {
        width: 75%;
    }

    .call-details {
        gap: 10px;
    }

    .call-details p,
    .call-details p>a {
        font-size: 14px;
        line-height: 22px;
    }

    .call-details>img {
        width: 20px;
    }

    .call-details p>span {
        font-size: 22px;
    }

    .pgTitle {
        font-size: 20px;
        font-weight: normal;
    }

    .subTitle {
        font-size: 14px;
    }

    .story-button {
        position: absolute;
        bottom: 5%;
        z-index: 10;
        display: flex;
        justify-content: center;
        width: calc(100% - 30px);
        left: 15px;
        gap: 15px;
        flex-direction: column;
        text-align: right;
        color: #5a130c;
        background: url(../img/popup_text.png) no-repeat center center;
        background-size: 100% 100%;
        padding: 30px 30px;
    }

    .story-button h4 {
        color: #5a130c;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
    }

    .story-button p {
        color: #333333;
        font-size: 14px;
        font-style: italic;
        text-align: center;
    }

    .story-button>button {
        font-size: 16px;
        font-weight: 600;
        font-family: 'EB Garamond', serif;
        text-decoration: none;
        text-transform: uppercase;
        color: #333333;
        background: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: flex-end;

    }

    .story-button>button>img {
        width: 20px;
        height: auto;
    }

}


/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* Active Popup */
.popup-overlay.active {
    display: flex;
}

/* Popup Box */
.popup-box {
    background: url(../img/popupbg.png) no-repeat center center;
    background-size: 100% 100%;
    width: 100%;
    height: auto;
    max-width: 500px;
    padding: 50px;
    position: relative;
    animation: popupFade 0.3s ease;
}

@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: -30px;
    right: 0px;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    width: 30px;
    height: 30px;
    border: 1px solid #cc8d4a;
    padding: 5px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close img {
    width: 20px;
    height: 20px;
}

.popup-box h2 {
    color: #5a130c;
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}

.popup-box p {
    font-size: 16px;
    color: #5a130c;
    margin-bottom: 20px;
}

.popup-box p>i {
    font-size: 16px;
    color: #333333;
    font-style: italic;
    padding-left: 15px;
}

.popup-box ul {
    text-align: left;
}

.popup-box ul li {
    color: #333333;
    margin-bottom: 10px;
    font-style: italic;
    margin-left: 15px;
}

.popup-box ul li>b {
    color: #5a130c;
    font-weight: 800;
}

#event-customization {
    min-height: 100vh;
    height: auto;
}

.mySwiper3 {
    width: 1024px;
}

@media screen and (max-width: 1024.5px) {
    .mySwiper3 {
        width: 100%;
    }
}



.memories {
    text-align: center;
}

.memories h3 {
    color: #be834d;
    font-size: 20px;
    text-align: center;
}

.memories h3 span {
    color: #be834d;
    font-size: 16px;
    display: block;
    text-align: center;
}

.memories p {
    display: none;
}

.mySwiper3 .swiper-slide-active {
    width: 350px !important;
}

@media screen and (max-width: 480.5px) {
    .mySwiper3 .swiper-slide-active {
        width: 75% !important;
    }
}


.mySwiper3 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-button {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    height: 30px;
    position: relative;
}





.mySwiper3 .swiper-wrapper {
    margin-left: -10px;
    padding: 0px 0px 40px 0px;
}

@media screen and (max-width: 480.5px) {
    .mySwiper3 .swiper-wrapper {
        margin-left: 13%;
        padding: 0px 0px 40px 0px;
    }
}




.mySwiper3 .swiper-slide-active .memories {
    background-color: #310b00;
    border: 1px solid #be834d;
    border-radius: 15px;
    padding: 15px;
}

.mySwiper3 .swiper-slide-active .memories p {
    display: block;
    color: white;
}

.mySwiper3 .swiper-slide-active .memories h3 span {
    color: white;
}

.mySwiper3 .swiper-slide-active .memories h3 {
    color: white;
}

.events-image {
    overflow: hidden;
    padding: 30px;
}

@media screen and (max-width: 767.5px) {
    .events-image {
        padding: 10px;
        margin-bottom: 30px;
    }
}

.events-image img {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.events-image img.image-hide {
    opacity: 0;
    transform: scale(1.08);
}

.events-image img.image-show {
    opacity: 1;
    transform: scale(1);
}

.events-image img {
    cursor: zoom-in;
    max-width: 100%;
}

/* Popup */
.image-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.image-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

.image-popup .close-popup {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media screen and (max-width: 480.5px) {
    .memories h3 {
        font-size: 14px;
    }

    .memories h3 span {
        font-size: 14px;
    }

    .memories p {
        font-size: 12px;
    }
}



/* Arbaz 18-05-2026 */

#upcoming_mehfil {
    height: calc(100vh - 0px);
    background: url(../img/m_bg.png) no-repeat center top;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upcoming_mehfil_swiper {
    width: 80%;
    padding-bottom: 50px;
}

.upcoming_mehfil_swiper .swiper-wrapper {
    padding-bottom: 40px;
}

#upcoming_mehfil .pgTitle {
    color: #dc9c5e;
}

.upcoming_mehfil_swiper .swiper-slide {
    background: url(../img/um_bg.png) no-repeat center;
    background-size: cover;
    padding: 20px;
    /* min-height: 300px; */
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.swiper-pagination-bullet {
    background: #957555;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #957555;
    opacity: 1;
    width: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.upcoming_mehfil_swiper .swiper-slide .date {
    font-size: 70px;
    color: #440e00;
    line-height: 60px;
}

.upcoming_mehfil_swiper .swiper-slide .month {
    font-size: 22px;
    text-transform: uppercase;
    color: #440e00;
}

#upcoming_mehfil .swiper-button-next,
#upcoming_mehfil .swiper-button-prev {
    top: 50%;
    border: 2px solid #7c5032;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    padding: 10px;
    color: #7c5032;
    background: transparent;
}

#upcoming_mehfil .swiper-button-next {
    right: 50px;
}

#upcoming_mehfil .swiper-button-prev {
    left: 50px;
}

.upcoming_mehfil_swiper .swiper-slide img {
    margin: 20px 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

h3.title {
    font-size: 25px;
    font-weight: 700;
    color: #85210c;
}

p.location {
    font-size: 22px;
    color: #440e00;
    margin-top: 10px;
}

p.category {
    color: #440e00;
    font-size: 18px;
    margin: 20px 0;
    min-height: 36px;
}

p.ivnitation {
    color: #440e00;
    font-size: 16px;
    text-transform: uppercase;
}

p.like {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

p.like img {
    width: 20px !important;
    margin: 0 !important;
    object-fit: contain;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.gap-2 {
    gap: 10px;
}

#media {
    min-height: calc(100vh - 0px);
    background: url(../img/m_bg.png) no-repeat center top;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 40px 0;
}

#media .list {
    background: url(../img/um_bg.png) no-repeat center;
    background-size: cover;
    padding: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    cursor: pointer;
}

#media .pgTitle,
#media .subTitle {
    text-align: left;
    max-width: 70%;
    color: #dc9c5e;
}

#media p.title {
    font-size: 25px;
    font-weight: 700;
    color: #85210c;
    margin: 10px 0;
}

#media p.desc {
    color: #440e00;
    font-size: 18px;
    max-width: 70%;
}

#media p.sub-title {
    color: #440e00;
    font-size: 14px;
}

#media .lists {
    height: 70vh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.position-relative {
    position: relative !important;
}

#media .redirect {
    position: absolute;
    top: 20px;
    right: 20px;
}

#media .vp-wrapper-lg {
    width: 80%;
}

@media screen and (max-width: 767.5px) {
    #upcoming_mehfil .swiper-button-next {
        display: none;
    }

    #upcoming_mehfil .swiper-button-prev {
        display: none;
    }

    #media .vp-wrapper-lg {
        width: 90%;
    }

    #media .list {
        flex-direction: column;
        padding-top: 60px;
    }

    #media .pgTitle,
    #media .subTitle {
        text-align: left;
        max-width: 100%;
        text-align: center;
        color: #dc9c5e;
    }

    #media .subTitle {
        margin-bottom: 20px;
    }

    #media p.desc {
        color: #440e00;
        font-size: 18px;
        max-width: 100%;
    }

    #media .lists {
    height: auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
}