@font-face {
    font-family: "Lora", serif;
    /* src: url('fonts/Calibri.eot?#iefix') format('embedded-opentype'),
        url('fonts/Calibri.woff') format('woff'),
        url('fonts/Calibri.ttf') format('truetype'),
        url('fonts/Calibri.svg#Calibri') format('svg'); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Catamaran", sans-serif;
}


/* Enhanced Banner Section */
.banner {
    /* height: 100vh; */
    height: 800px;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 800px;
    transform-style: preserve-3d;
}

.banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateZ(-500px);
    transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform, opacity;
}

.banner-slide.active {
    opacity: 1;
    transform: translateZ(0);
    z-index: 1;
}

.banner-slide.prev {
    opacity: 0.3;
    transform: translateZ(-200px) translateX(-30%);
    z-index: 0;
}

.banner-slide.next {
    opacity: 0.3;
    transform: translateZ(-200px) translateX(30%);
    z-index: 0;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.4), rgba(0, 0, 0, 0.6));
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.banner-content {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 1200px;
    padding: 20px;
    width: 100%;
    perspective: 1000px;
}

.text-slider {
    /* height: 800px; */
    /* overflow: hidden; */
    margin-bottom: 30px;
    position: relative;
    perspective: 1000px;
}

.text-slider-container {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
}

.text-slider-item {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    backface-visibility: hidden;
    opacity: 0;
    transform: rotateY(90deg) translateZ(100px);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;

}

.text-slider-item.active {
    opacity: 1;
    transform: rotateY(0deg) translateZ(0);

}

.event-t-1 {
    font-size: 50px;
    font-weight: bold;
    color: #f38c1f;
    text-align: start;
    font-family: 'Lora', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.842);
}

.text-slider-item h2 {
    font-size: 34px;
    font-weight: bold;
    font-family: "Catamaran", sans-serif;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.842);
    position: relative;
    text-align: start;
    line-height: 1.2;

}

.text-slider-item h2 span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-slider-item.active h2 span {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.text-slider-item p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.text-slider-item.active p {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition-delay: 0.8s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.text-slider-item.active .cta-button {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 20px) rotate(5deg);
    }

    50% {
        transform: translate(-15px, 15px) rotate(-5deg);
    }

    75% {
        transform: translate(15px, -10px) rotate(3deg);
    }
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(255, 254, 254);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ed8522;
    transition: all 4s linear;
}

.slider-dot.active {
    background: #ed8522;
    transform: scale(1.3);
}

.slider-dot.active::after {
    left: 100%;
}

/* Responsive Design */
@media screen and (max-width:1200px) {}

@media screen and (max-width: 768px) {
    .banner {
        height: 550px;
    }

    .banner-container {
        height: 550px;
    }

    .text-slider-item h2 {
        font-size: 22px;
    }

    .event-t-1 {
        font-size: 29px;
    }

    .banner-content {
        transform: translate(-50%, -206%);
    }
}

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

    .text-slider-item h2 {
        font-size: 19px;
        line-height: 28px;
    }

    .event-t-1 {
        font-size: 24px;
    }

    .banner-content {
        transform: translate(-50%, -160%);
    }
}

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

    .text-slider-item h2 {
        font-size: 18px;
        line-height: 28px;
    }

    .event-t-1 {
        font-size: 23px;
    }

    .banner-content {
        transform: translate(-50%, -160%);
    }
}

















html {
    scroll-behavior: smooth;
}

body {
    color: #2f2f2f;
    font-family: 'Calibri';
}

img {
    vertical-align: baseline;
}

h1 {
    /* font-family: "Nunito", sans-serif; */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
    color: royalblue;
}

/* a:visited {
    color: purple;
} */

a:hover,
a:focus,
a:active {
    /* color: midnightblue; */
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
    list-style: none;
}

/*--------------------------------------------------------------
# Flex
--------------------------------------------------------------*/
.flex {
    display: flex !important;
}

@media screen and (min-width: 992px) {
    .flex-lg {
        display: flex !important;
    }
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
/* .btn {
    padding: 16px 46px;
    border: 2px solid #9a24c1;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #232127;
} */

.btn.gradient {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdHlsZT0ic3RvcC1jb2xvcjojQUEwMEZGOyIgLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiM1ODE2ODc7IiAvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjZ3JhZGllbnQpIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiAvPjwvc3ZnPg==);
    background-image: -webkit-gradient(linear, left top, 270deg, color-stop(0%, #AA00FF), color-stop(100%, #581687));
    background-image: -moz-linear-gradient(270deg, #AA00FF 0%, #581687 100%);
    background-image: -webkit-linear-gradient(270deg, #AA00FF 0%, #581687 100%);
    background-image: -o-linear-gradient(270deg, #AA00FF 0%, #581687 100%);
    background-image: -ms-linear-gradient(270deg, #AA00FF 0%, #581687 100%);
    background-image: linear-gradient(270deg, #AA00FF 0%, #581687 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.btn.dark-purple {
    background: #9a24c1;

    color: #fff;
}

.btn.dark {
    background: #231e23;
    border-color: transparent;
    color: #fff;
}

.btn.gradient-bg {
    /* background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdHlsZT0ic3RvcC1jb2xvcjojQUEwMEZGOyIgLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiM1ODE2ODc7IiAvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjZ3JhZGllbnQpIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiAvPjwvc3ZnPg==);
    background-image: -webkit-gradient(linear, left top, 270deg, color-stop(0%, #AA00FF), color-stop(100%, #581687));
    background-image: -moz-linear-gradient(270deg, #AA00FF 0%, #581687 100%);
    background-image: -webkit-linear-gradient(270deg, #AA00FF 0%, #581687 100%);
    background-image: -o-linear-gradient(270deg, #AA00FF 0%, #581687 100%);
    background-image: -ms-linear-gradient(270deg, #AA00FF 0%, #581687 100%);
    background-image: linear-gradient(270deg, #AA00FF 0%, #581687 100%); */
    background: #08011e;
    color: #ffffff;
    padding: 12px 0px;
    transition: transform 0.4s ease, background-color 0.4s ease;
    border-radius: 5px;
}

/* Hover effect */
.btn.gradient-bg:hover {
    color: #ffffff !important;
    transform: scale(1.1);
    background: #08011e;
    /* Optional: hover color change */
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*
# Site Header
--------------------------------*/
.site-header {
    position: relative;
}

.site-header .site-title img {
    max-height: 64px;
}

/*
# Header Bar
--------------------------------*/
.header-bar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    padding: 14px 0;
}


/*
# Site Branding
--------------------------------*/
.site-branding img {
    display: block;
    max-width: 100%;
}

@media screen and (min-width: 992px) {
    .site-branding {
        margin-left: 45px;
    }

    .site-header .site-title img {
        max-height: 999px;
    }
}

.site-navigation ul li a.active {
    border-bottom: 3px solid #ed8522;
}

.site-navigation ul li a.active:hover {
    border-bottom: 3px solid #c5e6f2;
}

/*
  Hamburger Menu
----------------------------------------*/
.hamburger-menu {
    position: relative;
    width: 100%;
    max-width: 24px;
    height: 22px;
    margin-left: auto;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 2px;
}

.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) {
    top: 10px;
}

.hamburger-menu span:nth-child(4) {
    top: 18px;
}

.hamburger-menu.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

.entry-title1 {
    font-size: 30px;
    color: white;
    font-weight: 700;
    font-family: "Catamaran", sans-serif;
}

/*
# Main Menu
--------------------------------*/
.site-navigation {
    position: absolute;
    top: -10px;
    right: 15px;
    z-index: 9999;
    width: 100%;
    height: 22px;
    overflow: hidden;
    list-style: none;
    transition: all .35s;
}

.site-navigation.show {
    height: auto;
}

.site-navigation ul {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 9999;
    width: 320px;
    max-width: 80%;
    height: 100vh;
    overflow-x: scroll;
    padding: 30px;
    margin: 0;
    background: #9a28d7;
    transition: all 0.35s;
}

.site-navigation.show ul {
    left: 0;
}

.site-navigation ul li {
    display: block;
    padding: 10px 26px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
}

.site-navigation ul li a {
    display: block;
    color: #fff;
    font-family: "Catamaran", sans-serif;
    transition: all 0.35s;
    text-decoration: none;
    font-weight: 500;
}

.site-navigation ul li a:hover,
.site-navigation ul li.current-menu-item a {
    border-color: #2f2f2f;
}

@media screen and (min-width: 992px) {
    .site-navigation {
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        background: transparent;
    }

    .site-navigation ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 0;
        overflow: auto;
        background: transparent;
    }

    .site-navigation ul li a {
        color: #fff;
    }
}

/*
# Buy Tickets
--------------------------------*/
.site-header .buy-tickets {
    margin-right: 45px;
    text-align: right;
}

.site-header .buy-tickets .btn,
.hero-slider .btn {
    padding: 16px 46px;
    border: 2px solid #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-slider {}

.hero-content {
    padding-top: 150px;
    padding-bottom: 120px;
}

.hero-content .container,
.hero-content .row,
.hero-content .col {
    height: 100%;
}

.hero-slider .entry-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
    font-family: 'Lora', sans-serif;
}

.hero-slider .btn {
    margin-top: 45px;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    max-width: 1110px;
    right: 0;
    bottom: 48px;
    left: 0;
    padding: 0 15px;
    margin: 0 auto;
    text-align: left;
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    visibility: hidden;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    border: 2px solid #fff;
    border-radius: 50%;
    /* background: linear-gradient(270deg, #AA00FF 0%, #581687 100%); */
    background: linear-gradient(90deg, hsla(29, 85%, 53%, 1) 0%, hsla(194, 68%, 87%, 1) 100%);
    color: #000000;
    transition: all .35s;
}

.swiper-button-next {
    right: 15px;
}

.swiper-button-prev {
    left: 15px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-button-next span,
.swiper-button-prev span {
    display: block;
    width: 20px;
    padding-top: 6px;
}

.swiper-button-next path,
.swiper-button-prev path {
    fill: #000000;
}

.swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    height: 24px;
    border-radius: 0;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    color: #fff;
    background: transparent;
    opacity: 1;
    transition: all .35s;
}

.swiper-pagination-bullet-active {
    position: relative;
    width: 32px;
}

.swiper-pagination-bullet-active::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    z-index: 99;
    width: 20px;
    height: 2px;
    background: #fff;
}

@media screen and (min-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        visibility: visible;
    }

}

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

    /* #logohead{
        background-color: red;
        position: relative;
        top: -86px;
    }
    .hero-slider {
        margin-top: 80px;
    } */
    .conthead {
        position: relative;
        top: -86px;
    }

}

@media screen and (max-width:576px) {
    .conthead {
        position: relative;
        top: -8px;
    }

    .entry-title {
        font-size: 40px;
    }

}

/*
# Countdown
--------------------------------*/
.countdown-holder {
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.countdown-holder label {
    font-size: 13px;
}

@media screen and (min-width: 576px) {
    .hero-slider .entry-title {
        font-size: 42px;
    }

    .countdown-holder {
        margin-right: 24px;
        font-size: 42px;
    }

    .countdown-holder label {
        font-size: 18px;
    }
}


@media screen and (min-width: 992px) {
    .hero-slider {
        /*height: 100vh;*/
    }

    .hero-content {
        padding-top: 380px;
    }

    .hero-slider .entry-title {
        font-size: 65px;
    }

    .countdown-holder {
        margin-right: 52px;
        font-size: 60px;
    }

    .countdown-holder label {
        font-size: 24px;
    }
}

@media screen and (min-width: 1200px) {
    /* .hero-content {
        padding-top: 400px;
    } */

    .swiper-button-next {
        right: 21px;
    }

    .swiper-button-prev {
        left: 21px;
    }
}


/*--------------------------------------------------------------
# Homepage - Info Section
--------------------------------------------------------------*/
.homepage-info-section {
    /* margin: -94px 0px 0px 0px !important; */
    padding: 40px 0px 30px 0px;
    /* background: #fff; */
    background: #c7dfe5;
}


.homepage-info-section figure {
    /* padding-right: 30px; */
}

.homepage-info-section figure img {
    max-width: 100%;
}

.homepage-info-section .entry-title {
    /* font-size: 60px; */
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-family: "Lora", serif;
    font-weight: bold;
    line-height: 1;
    color: #232127;
}

.entry-footer a {
    font-family: "Lora", serif;
    font-weight: 500;
}

.homepage-info-section .entry-content {
    margin-top: 28px;

}

.entry-content h4 {
    font-family: "Catamaran", sans-serif;
    font-size: 23px;
}

.homepage-info-section .entry-content p {
    font-family: "Lora", serif;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

.homepage-info-section .entry-footer a {
    margin-top: 32px;
    margin-right: 18px;
}

















/*--------------------------------------------------------------
# Homepage - Featured Events
--------------------------------------------------------------*/
.homepage-featured-events {
    height: auto;
    padding: 110px 0 150px;
    background: url("images/featured-events-bg.jpg") no-repeat center;
    background-size: cover !important;
}

.homepage-featured-events .event-content-wrap {
    position: relative;
    padding: 36px 18px;
}

.homepage-featured-events .event-content-wrap figure {
    margin: -36px -18px;
}

.homepage-featured-events .event-content-wrap figure img {
    display: block;
    width: 100%;
}

.homepage-featured-events .event-content-wrap .entry-header {
    position: absolute;
    left: 18px;
    bottom: 24px;
    z-index: 99;
}

.homepage-featured-events .event-content-wrap .entry-header .entry-title {
    display: inline-block;
    padding: 12px 18px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    background: #9a24c1;
}

.homepage-featured-events .event-content-wrap .entry-header .posted-date {
    padding: 2px 18px;
    font-size: 14px;
    color: #fff;
}

.featured-events-wrap {
    position: relative;
}

.featured-events-wrap .event-content-wrap:nth-last-of-type(1) {
    margin-bottom: 0;
}

.featured-events-wrap .event-content-wrap {
    width: 100%;
    margin-bottom: 30px;
}

@media screen and (max-width: 575px) {
    .featured-events-wrap .event-content-wrap.half {
        width: calc(50% - 15px);
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .featured-events-wrap .event-content-wrap {
        width: calc(50% - 15px);
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .featured-events-wrap .event-content-wrap {
        width: calc(50% - 15px);
    }

    .featured-events-wrap .event-content-wrap.half {
        width: calc(33.333333% - 15px);
    }
}

@media screen and (min-width: 992px) {
    .homepage-featured-events {
        min-height: 1260px;
    }

    .featured-events-wrap .event-content-wrap {
        position: absolute;
        top: 0;
        left: 0;
        margin-bottom: 0;
    }

    .homepage-featured-events .positioning-event-1 {
        width: 290px;
    }

    .homepage-featured-events .positioning-event-2 {
        width: 210px;
        top: 192px;
        left: 320px;
    }

    .homepage-featured-events .positioning-event-3 {
        width: 210px;
        top: 75px;
        left: 560px;
    }

    .homepage-featured-events .positioning-event-4 {
        width: 130px;
        top: 235px;
        left: 800px;
    }

    .homepage-featured-events .positioning-event-5 {
        width: 130px;
        top: 350px;
        left: 0;
    }

    .homepage-featured-events .positioning-event-6 {
        width: 130px;
        top: 344px;
        left: 560px;
    }

    .homepage-featured-events .positioning-event-7 {
        width: 210px;
        top: 457px;
        left: 160px;
    }

    .homepage-featured-events .positioning-event-8 {
        width: 290px;
        top: 457px;
        left: 400px;
    }

    .homepage-featured-events .positioning-event-9 {
        width: 210px;
        top: 395px;
        left: 720px;
    }

    .homepage-featured-events .positioning-event-10 {
        width: 130px;
        top: 653px;
        left: 720px;
    }

    .homepage-featured-events .positioning-event-11 {
        width: 130px;
        top: 807px;
        left: 400px;
    }
}

@media screen and (min-width: 1200px) {
    .homepage-featured-events {
        min-height: 1480px;
    }

    .homepage-featured-events .positioning-event-1 {
        width: 350px;
    }

    .homepage-featured-events .positioning-event-2 {
        width: 255px;
        top: 230px;
        left: 380px;
    }

    .homepage-featured-events .positioning-event-3 {
        width: 255px;
        top: 90px;
        left: 665px;
    }

    .homepage-featured-events .positioning-event-4 {
        width: 160px;
        top: 280px;
        left: 950px;
    }

    .homepage-featured-events .positioning-event-5 {
        width: 160px;
        top: 417px;
        left: 0;
    }

    .homepage-featured-events .positioning-event-6 {
        width: 160px;
        top: 410px;
        left: 665px;
    }

    .homepage-featured-events .positioning-event-7 {
        width: 255px;
        top: 546px;
        left: 190px;
    }

    .homepage-featured-events .positioning-event-8 {
        width: 350px;
        top: 546px;
        left: 475px;
    }

    .homepage-featured-events .positioning-event-9 {
        width: 255px;
        top: 470px;
        left: 855px;
    }

    .homepage-featured-events .positioning-event-10 {
        width: 160px;
        top: 776px;
        left: 855px;
    }

    .homepage-featured-events .positioning-event-11 {
        width: 160px;
        top: 963px;
        left: 475px;
    }
}

/*--------------------------------------------------------------
# Homepage - Next Events
--------------------------------------------------------------*/




.event-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

/* Banner image with text */
.banner-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Date section */
.date-section {
    margin-top: 20px;
    color: #333;
}

.date-title {
    color: #e94a86;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: bold;
}

.date {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

/* Button styling */
.cta-button {
    display: inline-block;
    margin-top: 25px;
    background-color: #8cd458;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #7bc348;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-button i {
    margin-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .event-container {
        width: 90%;
    }

    .date-title {
        font-size: 18px;
    }

    .date {
        font-size: 24px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}





























.next-events-section-header {
    margin-top: 36px;
    text-align: center;
}

.next-events-section-header .entry-title,
.events-partners .entry-title {
    padding: 24px 0;
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    color: #232127;
    background: url("images/next-events-header-bg.png") no-repeat center;
    text-align: center;
}

.next-events-section-header p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

@media screen and (min-width: 1200px) {
    .next-events-section-header p {
        padding: 0 85px;
    }
}

.homepage-next-events .next-event-wrap {
    margin-top: 96px;
    text-align: center;
}

.homepage-next-events .next-event-wrap figure {
    position: relative;
    margin: 0;
}

.homepage-next-events .next-event-wrap figure img {
    width: 100%;
}

.homepage-next-events .next-event-wrap .event-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -32px;
    left: 32px;
    width: 78px;
    height: 78px;
    border: 2px solid #fff;
    border-radius: 50%;

    font-size: 22px;
    font-weight: bold;
    color: #fff;

    background: #9a28d7;
}

.homepage-next-events .next-event-wrap .entry-title {
    margin-top: 32px;
    font-size: 28px;
    font-weight: bold;
    color: #232127;
}

.homepage-next-events .next-event-wrap .posted-date {
    margin-top: 12px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #777777;
}

.homepage-next-events .next-event-wrap .posted-date span {
    color: #9a28d7;
}

.homepage-next-events .next-event-wrap .entry-content p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

.homepage-next-events .next-event-wrap .entry-footer {
    margin-top: 40px;
}

.homepage-next-events .next-event-wrap .entry-footer a {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #bec0cc;
    text-decoration: none;
    color: #bec0cc;
}

.homepage-next-events .next-event-wrap .entry-footer a:hover {
    border-color: #9a28d7;
    color: #9a28d7;
}

/*--------------------------------------------------------------
# Homepage - Regional Events

--------------------------------------------------------------*/


















.entry-title-past {
    font-size: 60px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-family: "Lora", serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
}





.homepage-regional-events {
    min-height: 700px;
    margin-top: 20px;
    padding: 90px 0px 80px 0px;
    /* background: linear-gradient(90deg, hsla(29, 85%, 53%, 1) 0%, hsla(194, 68%, 84%, 1) 100%); */
    background-image: url("images/eve.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.homepage-regional-events-past {
    background-image: url("images/image\ \(14\).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0px 80px 0px;
}

.homepage-regional-events .regional-events-heading .entry-title {
    /* font-size: 60px; */
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-family: "Lora", serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
}

.homepage-regional-events .select-location select {
    padding: 14px 32px;
    margin: 20px 0;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    background: -moz-linear-gradient(180deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(88, 20, 121, 1)), color-stop(100%, rgba(171, 0, 229, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* ie10+ */
    background: linear-gradient(270deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#581479', endColorstr='#ab00e5', GradientType=1);
    /* ie6-9 */
    color: #fff;
    outline: none;
}

.homepage-regional-events .select-location select option {
    background: #9a28d7;
    padding: 5px 0;
    outline: none;
}

.homepage-regional-events-slider {
    position: relative;
    margin-top: 100px;
    color: #fff;
    text-align: center;
}

.homepage-regional-events-slider figure {
    position: relative;
    margin: 0;
}

.homepage-regional-events-slider figure img {
    display: block;
    width: 100%;
}

.homepage-regional-events-slider .entry-title {
    margin-top: 28px;
    font-size: 18px;
    font-weight: bold;
}

.homepage-regional-events-slider .entry-footer {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.homepage-regional-events-slider .entry-footer span {
    color: #9a28d7;
}

.homepage-regional-events-slider .swiper-button-next,
.homepage-regional-events-slider .swiper-button-prev {
    top: calc(50% - 40px);
}

.homepage-regional-events-slider .swiper-button-next {
    right: 20px;
}

.homepage-regional-events-slider .swiper-button-prev {
    left: 20px;
}

.event-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(154, 40, 215, .85);

    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;

    visibility: hidden;
    opacity: 0;
    transition: all .35s;
}

.swiper-slide {}

.event-overlay-link:hover {
    text-decoration: none;
    color: #fff;
}

.homepage-regional-events-slider .swiper-slide:hover .event-overlay-link {
    visibility: visible;
    opacity: 1;
}

.events-partners {
    padding: 120px 0;
}

.events-partners .entry-title {
    color: #fff;
}

.events-partners-logos .event-partner-logo {
    width: 20%;
    min-width: 220px;
    margin-top: 80px;
    text-align: center;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter-subscribe {
    /* padding: 150px 0; */
    min-height: 600px;
    background: url("images/contectbanner.webp") no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.newsletter-subscribe .entry-title {

    font-size: clamp(2rem, 4.5vw, 3rem);
    font-family: "Lora", serif;
    font-weight: 600;
    font-weight: bold;
    color: #fff;
    margin-top: 50px;
}

.newsletter-subscribe header p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.newsletter-subscribe form input[type="text"],
.newsletter-subscribe form input[type="email"] {
    width: 100%;
    color: #232127;
    padding: 22px 24px;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}




.newsletter-subscribe form input[type="text"],
.newsletter-subscribe form input[type="email"],
.newsletter-subscribe form input[type="submit"] {
    margin-top: 30px;
}

/* textarea-style-starts */
.expandable-textarea {
    width: 100%;
}

textarea:focus {
    outline: none;
    border-color: black;
}

.expandable-textarea {
    display: grid;
}

.expandable-textarea textarea,
.expandable-textarea::after {
    grid-area: 1 / 1 / 2 / 2;

    /* Custom styling goes here */
    font: inherit;
    font-size: 14px;
    padding: 22px 24px;
    /* padding: 0.5rem; */
    border-radius: 8px;
    border: 1px solid #c0c0c0;
    margin: 40px 8px 0px 0px
}

.expandable-textarea textarea {
    resize: none;
    overflow: hidden;
}

.expandable-textarea::after {
    content: attr(data-replicated-value) " ";
    white-space: pre-wrap;
    visibility: hidden;
}

/* textarea-style-end */
.newsletter-subscribe form input[type="submit"] {
    width: 100%;
}

@media screen and (min-width: 992px) {

    .newsletter-subscribe form input[type="text"],
    .newsletter-subscribe form input[type="email"] {
        margin: 80px 0px 0;
    }

    .newsletter-subscribe form input[type="submit"] {
        margin: 36px 0px 0;
    }
}

.newsletter-subscribe form input[type="submit"] {
    border: 2px solid #fff;
    outline: none;
}

.newsletter-subscribe form input[type="submit"]:focus {
    background: #9a28d7;
}

/*--------------------------------------------------------------
# Single Page Header
--------------------------------------------------------------*/
.page-header {
    height: 250px;
    padding: 150px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.page-header .entry-title {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
}

@media screen and (min-width: 576px) {
    .page-header {
        height: 300px;
    }

    .page-header .entry-title {
        font-size: 52px;
    }

}

@media screen and (min-width: 992px) {
    .page-header {
        height: 400px;
        padding: 150px 0;
    }

    .page-header .entry-title {
        font-size: 82px;
    }

}

@media screen and (min-width: 1200px) {
    .page-header {
        /* height: 525px; */
        padding: 220px 0;
    }

}

.events-page-header {
    background-image: url("images/girnar-temples1_11zon.webp");
}

.single-event-page-header {
    background-image: url("images/single-event-bg.jpg");
}

.events-news-page-header {
    background-image: url("images/events-news-bg.jpg");
}

.contact-page-header {
    background-image: url("images/contact-bg.jpg");
}

.elements-page-header {
    background-image: url("images/elements-bg.jpg");
}

/*--------------------------------------------------------------
# Events List
--------------------------------------------------------------*/
.events-search {
    padding: 100px 0;
}


.events-search input[type="date"],
.events-search input[type="text"] {
    width: 100%;
    padding: 12px 24px;
    margin: 0 6px 30px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    outline: none;
    background: #f3f8f9;
    color: #232127;
}

.events-search input[type="text"]::placeholder {
    font-style: italic;
}

.events-search .btn {
    border-color: transparent;
    outline: none;
}

.events-search .btn:focus {
    background: #9a28d7;
    outline: none;
}

.events-list-page .single-event {
    display: none;
    margin-bottom: 30px;
}

.events-list-page .single-event.visible {
    display: block;
}

.events-list-page .events-thumbnail {
    margin: 0;
}

.events-list-page .events-thumbnail img {
    display: block;
    width: 100%;
}

.events-list-page .event-content-wrap {
    padding: 48px 36px 36px;
    border: 1px solid #e5e5e5;
    border-top: 0;
    background: #f3f8f9;
}

.events-list-page .event-content-wrap .entry-title {
    font-size: 28px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.events-list-page .event-content-wrap .entry-title a {
    color: #232127;
}

.events-list-page .event-content-wrap .event-location {
    padding-left: 32px;
    margin-top: 12px;
    background: url("images/location-icon.png") no-repeat left top;
}

.events-list-page .event-content-wrap .event-location a {
    font-size: 14px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.events-list-page .event-content-wrap .event-date {
    margin-top: 6px;
    font-size: 16px;
    color: #9a28d7;
}

.events-list-page .event-content-wrap .event-cost {
    width: 124px;
    height: 52px;
    margin-right: -37px;
    font-size: 14px;
    color: #777777;
    background: #fff;
}

.events-list-page .event-content-wrap .event-cost span {
    margin-left: 4px;
    font-size: 24px;
    font-weight: bold;
    color: #9a28d7;
}

.events-list-page .event-content-wrap .entry-content p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

.events-list-page .event-content-wrap .entry-footer {
    margin-top: 36px;
}

.events-list-page .event-content-wrap .entry-footer a {
    padding-bottom: 2px;
    font-size: 18px;
    font-weight: bold;
    color: #9a28d7;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #9a28d7;
}

.events-list-page .load-more-btn {
    text-align: center;
    margin: 84px 0;
}

.events-list-page .load-more-btn .btn:focus {
    background: #9a28d7;
}

.eventback {
    background: radial-gradient(circle, rgba(242, 139, 34, 1) 0%, rgba(198, 232, 244, 1) 100%);
    padding-bottom: 10px;
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Upcoming Events
--------------------------------------------------------------*/
.upcoming-events-outer {
    padding: 400px 0 120px;
    margin-top: -200px;
    background: url("images/upcoming-events-bg.jpg") no-repeat;
    background-size: cover;
}

.upcoming-events {
    background: #fff;
}

.upcoming-events-header {
    padding: 20px 42px;
    background: #9a28d7;
}

.upcoming-events-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.upcoming-events-list .upcoming-event-wrap {
    padding: 30px 20px;
    border-bottom: 2px solid #e0e3e4;
}

.upcoming-events-list .upcoming-event-wrap:nth-last-of-type(1) {
    border-bottom: 0;
}

.upcoming-events-list .events-thumbnail {
    width: 104px;
    height: 104px;
    margin: 0;
}

.upcoming-events-list .events-thumbnail img {
    display: block;
    width: 100%;
}

.upcoming-events-list .entry-header {
    margin-top: 30px;
    width: 100%;
}

.upcoming-events-list .entry-meta .event-date {
    font-size: 48px;
    line-height: 1.2;
    color: #232127;
    text-align: center;
}

.upcoming-events-list .entry-meta .event-date span {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.upcoming-events-list .entry-title {
    margin: 0;
}

.upcoming-events-list .entry-title a {
    font-size: 24px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.upcoming-events-list .entry-header .event-date-time {
    font-size: 16px;
    color: #9a28d7;
}

.upcoming-events-list .entry-header .event-speaker {
    margin-top: 12px;
    font-size: 16px;
    color: #777777;
}

.upcoming-events-list .entry-header .event-speaker {
    margin-top: 12px;
    font-size: 16px;
    color: #777777;
}

.upcoming-events-list .entry-footer {
    width: 100%;
    margin-top: 30px;
}

.upcoming-events-list .entry-footer a {
    padding-bottom: 2px;
    font-size: 18px;
    font-weight: bold;
    color: #9a28d7;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #9a28d7;
}

@media screen and (min-width: 992px) {
    .upcoming-events-list .upcoming-event-wrap {
        padding: 30px 42px;
    }

    .upcoming-events-list .entry-header,
    .upcoming-events-list .entry-footer {
        width: 45%;
        margin-top: 0;
    }

    .upcoming-events-list .entry-footer {
        width: auto;
    }
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
ul.tabs-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.tabs-nav .tab-nav {
    padding: 6px 10px;
    border: 1px solid #e5e5e5;
    margin-right: 5px;
    background: #f3f8f9;
    font-size: 18px;
    font-weight: bold;
    color: #232127;
    cursor: pointer;
    transition: all .35s;
}

ul.tabs-nav .tab-nav.active {
    border-color: transparent;
    background: #9a28d7;
    color: #fff;
}

.tabs .tab-nav {
    margin-bottom: -1px;
    z-index: 99;
}

.tabs-container {
    border: 1px solid #e5e5e5;
    background: #f3f8f9;
    padding: 15px;
}

.tab-content {
    display: none;
}

.tab-content p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #777777;
}

@media screen and (min-width: 992px) {
    ul.tabs-nav .tab-nav {
        width: 180px;
        padding: 14px 24px;
        margin-right: 12px;
    }

    .tabs-container {
        padding: 48px;
    }
}

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.accordion-wrap {
    position: relative;
}

.accordion-wrap .entry-content {
    margin: 0;
}

.accordion-wrap .entry-title {
    padding: 18px 28px;
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    background: #f3f8f9;
    font-size: 18px;
    font-weight: bold;
    color: #232127;
    cursor: pointer;
}

.accordion-wrap .entry-title.active {
    background: #9a28d7;
    color: #fff;
}

.accordion-wrap .entry-title .arrow-r::before {
    content: "+";
}

.accordion-wrap .entry-title .arrow-d::before {
    content: "-";
}

/*
# Content
----------------------------------*/
.accordion-wrap .entry-content {
    display: none;
}

.accordion-wrap .entry-content p {
    padding: 24px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

/*--------------------------------------------------------------
# Single Events Page
--------------------------------------------------------------*/
.single-event-page .event-content-wrap {
    margin-top: 80px;
}

.single-event-page .single-event-heading {
    width: 100%;
}

.single-event-page .event-content-wrap .entry-title {
    font-size: 36px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.single-event-page .event-content-wrap .event-location {
    padding-left: 32px;
    margin-top: 12px;
    background: url("images/location-icon.png") no-repeat left top;
}

.single-event-page .event-content-wrap .event-location a {
    font-size: 14px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.single-event-page .event-content-wrap .event-date {
    margin-top: 6px;
    font-size: 16px;
    color: #9a28d7;
}

.single-event-page .buy-tickets {
    margin-top: 30px;
}

.single-event-page .buy-tickets .btn:focus {
    background: #9a28d7;
}

.single-event-page .event-content-wrap .events-thumbnail {
    margin-top: 36px;
    margin-bottom: 0;
}

.single-event-page .event-content-wrap .events-thumbnail img {
    display: block;
    width: 100%;
}

.single-event-page .tabs {
    margin-top: 64px;
}

.single-event-page .tabs-container {
    padding: 15px;
}

@media screen and (min-width: 992px) {
    .single-event-page .tabs-container {
        padding: 60px;
    }
}

.single-event-details {
    width: 100%;
}

.single-event-page .single-event-details-row {
    margin-bottom: 40px;
}

.single-event-page .single-event-details-row:nth-last-of-type(1) {
    margin-bottom: 0;
}

.single-event-details,
.single-event-details a,
.single-event-details label {
    font-size: 18px;
    font-weight: bold;
    color: #777777;
}

.single-event-details label {
    display: block;
    color: #232127;
}

.single-event-details-row span {
    color: #ff005a;
}

.single-event-map {
    width: 100%;
    margin-top: 30px;
}

.single-event-map iframe {
    width: 100%;
    height: 460px;
}

.event-tickets {
    padding: 15px;
    margin-top: 36px;
    border: 1px solid #e5e5e5;
    background: #f3f8f9;
}

.event-tickets .ticket-row {
    margin-bottom: 60px;
}

.event-tickets .ticket-row:nth-last-of-type(1) {
    margin-bottom: 0;
}

.ticket-type,
.event-tickets .number-of-ticket {
    padding: 15px 24px;
    margin-right: 15px;
    margin-bottom: 20px;
    background: #fff;
}

.ticket-type {
    width: 100%;
}

.event-tickets .ticket-type .entry-title,
.event-tickets .ticket-type .ticket-price,
.event-tickets .number-of-ticket {
    font-size: 18px;
    font-weight: bold;
    color: #232127;
}

.event-tickets .ticket-type .entry-title span {
    margin-right: 18px;
    font-size: 18px;
    font-weight: bold;
    color: #232127;
}

.event-tickets .ticket-type .entry-title,
.event-tickets .clear-ticket-count {
    font-size: 16px;
    font-weight: normal;
    color: #777777;
}

.event-tickets .ticket-type .entry-title {
    display: inline-block;
}

.event-tickets .ticket-type .ticket-price {
    color: #9a28d7;
}

.event-tickets .number-of-ticket {
    width: 120px;
}

.event-tickets .number-of-ticket .ticket-count {
    width: 32px;
    border: 0;
    text-align: center;
}

.event-tickets .number-of-ticket .decrease-ticket,
.event-tickets .number-of-ticket .increase-ticket {
    width: 18px;
    height: 28px;
    cursor: pointer;
    text-align: center;
}

.event-tickets .number-of-ticket .ticket-count::-webkit-outer-spin-button,
.event-tickets .number-of-ticket .ticket-count::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.event-tickets .clear-ticket-count {
    width: 80px;
    text-align: center;
    cursor: pointer;
}

.event-tickets .btn {
    cursor: pointer;
}

.event-tickets .btn:focus {
    background: #9a28d7;
}

.single-event-page .upcoming-events {
    margin-top: 36px;
    margin-bottom: 120px;
    border: 2px solid #e0e3e4;
    border-top: 0;
}

.single-event-page .upcoming-events-header {
    margin: 0 -2px;
}

@media screen and (min-width: 768px) {
    .single-event-page .single-event-heading {
        width: auto;
    }

    .single-event-details {
        width: 220px;
    }

    .single-event-map {
        width: calc(100% - 220px);
        margin: 0;
    }

    .event-tickets {
        padding: 40px;
    }
}

@media screen and (min-width: 992px) {
    .single-event-details {
        width: 320px;
    }

    .single-event-map {
        width: calc(100% - 320px);
        margin: 0;
    }

    .event-tickets .ticket-row {
        margin-bottom: 15px;
    }

    .ticket-type {
        width: calc(100% - 400px);
        margin-bottom: 0;
    }

    .event-tickets .number-of-ticket {
        margin-bottom: 0;
    }
}

/*--------------------------------------------------------------
# Events News
--------------------------------------------------------------*/
.events-news-page .events-news-post {
    margin-top: 80px;
    margin-bottom: 40px;
}

.events-news-page .events-news-post .entry-title,
.events-news-page .events-news-post .entry-title a {
    font-size: 36px;
    font-weight: bold;
    color: #232127;
}

.events-news-page .events-news-post .entry-meta {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    color: #777;
}

.events-news-page .events-news-post .entry-meta>div {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 2px solid #777;
}

.events-news-page .events-news-post .entry-meta>div:nth-last-of-type(1) {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

.events-news-page .events-news-post .entry-meta a {
    color: #777;
    text-decoration: none;
}

.events-news-page .events-news-post figure {
    position: relative;
    margin: 25px 0 0;
}

.events-news-page .events-news-post figure img {
    display: block;
    width: 100%;
}

.events-news-page .events-news-post .posted-date {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 52px;
    padding: 12px 10px;
    border: 2px solid #fff;
    border-radius: 50px;
    background: -moz-linear-gradient(180deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(88, 20, 121, 1)), color-stop(100%, rgba(171, 0, 229, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* ie10+ */
    background: linear-gradient(270deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#581479', endColorstr='#ab00e5', GradientType=1);
    /* ie6-9 */

    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

@media screen and (min-width: 576px) {
    .events-news-page .events-news-post .posted-date {
        top: 25px;
        left: -27px;
        padding: 24px 10px;
    }
}

.events-news-page .events-news-post .posted-date span {
    display: block;
}

.events-news-page .events-news-post .entry-content {
    margin-top: 40px;
}

.events-news-page .events-news-post .entry-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

.blog-pagination ul {
    padding: 0;
    margin: 65px 0 120px;
    list-style: none;
}

.blog-pagination li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;

    font-size: 18px;
    font-weight: bold;
    color: #232127;
}

.blog-pagination li a {
    display: block;
    color: #232127;
    text-decoration: none;
}

.blog-pagination li.active {
    width: 60px;
    padding-left: 30px;
}

.blog-pagination li.active::before {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 0;
    z-index: 99;
    width: 32px;
    height: 2px;
    background: #232127;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-location-details {
    margin-top: 80px;
}

.contact-location-details .entry-title {
    font-size: 60px;
    font-weight: bold;
    color: #232127;
}

.contact-location-details .entry-content {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

.contact-location-details .entry-footer ul {
    padding: 0;
    margin: 42px 0 0;
    list-style: none;
}

.contact-location-details .entry-footer li {
    padding-left: 48px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #232127;
}

.contact-location-details .entry-footer li a {
    color: #232127;
    text-decoration: none;
}


.contact-location-details .entry-footer li.contact-address {
    background: url("images/location-icon.png") no-repeat left center;
}

.contact-location-details .entry-footer li.contact-number {
    background: url("images/phone-icon.png") no-repeat left center;
}

.contact-location-details .entry-footer li.contact-email {
    background: url("images/folder-icon.png") no-repeat left center;
}

.contact-page-map {
    margin-top: 80px;
}

.contact-page-map iframe {
    width: 100%;
    height: 540px;
}

.contact-form {
    margin: 120px 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 22px;
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
    background: #f3f8f9;
    color: #232127;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    font-style: italic;
}

.contact-form input[type="submit"] {
    margin-top: 36px;
    border: 0;
}

.contact-form input[type="submit"]:focus {
    outline: none;
    background: #9a28d7;
}

/*--------------------------------------------------------------
# Elements Page
--------------------------------------------------------------*/
.elements-wrap {
    margin-top: 80px;
}

.elements-page .elements-heading .entry-title {
    font-size: 60px;
    font-weight: bold;
    color: #232127;
}

.elements-page .elements-container {
    margin-top: 54px;
}

/*
# Circular Progress Bar
----------------------------------*/
.circular-progress-bar {
    margin: 20px 0;
    text-align: center;
}

.circular-progress-bar .circle {
    position: relative;
    width: 124px;
    height: 124px;
    margin: 0 auto;
}

.circular-progress-bar .circle strong {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -18px;
    width: 100%;
    font-size: 24px;
    color: #232127;
}

.circular-progress-bar .entry-title {
    margin-top: 24px;
    font-size: 22px;
    font-weight: bold;
    color: #232127;
}

.circular-progress-bar p {
    font-size: 18px;
    color: #777;
}

/*
# Counter Box
----------------------------------*/
.counter-box {
    margin: 20px 0;
    text-align: center;
}

.counter-box .start-counter {
    margin-top: 24px;
    font-size: 60px;
    color: #232127;
}

.counter-box .entry-title {
    font-size: 18px;
    color: #777777;
}

/*
# Icon Box
----------------------------------*/
.icon-box {
    margin: 20px 0;
}

.icon-box figure {
    width: 84px;
    margin: 0;
    text-align: center;
}

.icon-box figure img {
    max-width: 100%;
}

.icon-box .entry-header {
    width: calc(100% - 94px);
}

.icon-box .entry-title {
    font-size: 28px;
    font-weight: bold;
    color: #232127;
}

.icon-box .date {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #777;
}

.icon-box .date span {
    color: #9a28d7;
}

.icon-box .entry-content {
    margin-top: 24px;
}

.icon-box .entry-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #777;
}

/* events-card-section-starts--------------------------------------------------------------------- */

.maincard {
    margin-top: 100px;
    /* margin-bottom: 100px; */
}

.cards1 {
    max-width: 1300px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
}

.eventcard {
    background-color: #fff;
    position: relative;
    border-radius: 10px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
    padding-top: 200px;
    margin-bottom: 87px;
}

.contact-card {
    /* background: linear-gradient(270deg, rgb(171, 0, 229) 0%, rgb(88, 20, 121) 100%); */
    background: #ed8522;
    color: white;
    border-radius: 10px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);

    a {
        color: white;
    }
}

.eventcard img {
    width: 300px;
    height: 330px;
    /* object-fit: cover; */
    position: absolute;
    top: 20px;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.card-body {
    padding: 20px;
}

.event-card-body .event-card-title {
    /* font-size: 24px; */
    font-weight: 500;
    text-align: center;
    /* margin-bottom: 20px; */
}

.event-card-body .event-card-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
}

.event-card-body,
.btn {
    width: 100%;
    display: block;
    /* height: 50px; */
    text-align: center;
    background: linear-gradient(270deg, rgb(171, 0, 229) 0%, rgb(88, 20, 121) 100%);
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: 0.4s ease;
}

.event-card-body .btn:hover {
    background: rgb(97, 18, 132);
    color: #fff;
}

/* .cbtitle {
    height: 40px;
} */

.ctp {
    height: 150px;
}

.ctp p {
    padding-top: 15px;
}

.edate {
    /* margin-top: 50px; */
    text-align: center;
}

@media screen and (max-width:768px) {
    .cards1 {
        grid-template-columns: 1fr;
        grid-row-gap: 100px;
    }

    .homepage-regional-events {
        padding-top: 160px;
    }

}

/* events-card-section-end -----------------------------------------*/

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    padding: 30px 0;
    background: #08011e;
    text-align: center;
    font-family: "Catamaran", sans-serif;
}

.footer-logo img {
    max-width: 100%;
}

.footer-navigation ul,
.footer-social ul {
    padding: 0;
    margin: 32px 0 0;
    list-style: none;
}

.footer-navigation li {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-navigation li a {
    display: block;
    padding: 8px 12px;
    color: #fff;
    font-family: "Catamaran", sans-serif;
    font-weight: 500;
}

.footer-social li a {
    display: block;
    width: 16px;
    height: 22px;
    margin: 12px;
    color: #ffffff;
    transition: all .35s;
}

.footer-social li a:hover {
    color: #fff;
}

.back-to-top {
    position: fixed;
    z-index: 9999;
    right: 64px;
    bottom: 84px;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #9a28d7;
    transition: all .35s;
    cursor: pointer;

    visibility: hidden;
    opacity: 0;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
}

.back-to-top span {
    display: block;
    width: 20px;
    padding-top: 4px;
}

.back-to-top path {
    fill: #fff;
}

/* events-page-starts */
.vthinkev {
    width: 100%;
    height: auto;
}

.logoimages {
    background-color: white;
    border-radius: 250px;
    height: 350px;
    width: 350px;
}

.evlogo img {
    height: 250px;
    width: 250px;
    position: absolute;
    top: 146px;
    left: 154px
}

.eventsback1 {
    background: radial-gradient(circle, rgba(228, 119, 37, 1) 0%, rgba(158, 3, 212, 1) 51%, rgba(8, 1, 30, 1) 89%);
    border-radius: 20px;
    height: 500px;
    ;
    width: auto;

}

.evimag,
a,
img {
    height: 100%;
    width: auto;
}

.evlogo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 3px solid white;
}

.evtext {
    text-align: center;
}

.evtext h2 {
    background-color: white;
    font-size: 50px;
    color: black;
    border-radius: 0px 0px 10px 10px;
    padding: 20px 0px 0px 0px;
    text-transform: uppercase;
}

.edtext p {
    padding: 40px 0px 0px 0px;
    color: white;
    font-size: 20px;
}

.evet {
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url("images/itl.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 650px;
    width: 100%;
    border-radius: 10px;
    /* filter: brightness(0.5); */
}

.etitle {
    padding-top: 50px;
}

.girdescrip p {
    text-align: center;
    font-size: 22px;
    line-height: 34px;
    color: white;
}

.button {
    width: 150px;
    padding: 0;
    border: none;
    transform: rotate(5deg);
    transform-origin: center;
    font-family: "Gochi Hand", cursive;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    padding-bottom: 3px;
    border-radius: 5px;
    box-shadow: 0 2px 0 #494a4b;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #5cdb95;
}

.button span {
    background: #f1f5f8;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 2px solid #494a4b;
}

.button:active {
    transform: translateY(5px);
    padding-bottom: 0px;
    outline: 0;
}

.ebutton {
    position: absolute;
    bottom: 40px;
    right: -193px;
}

/* vthink-events-form-page-starts */

.mainformvevents {
    margin-top: 50px;
    margin-bottom: 50px;
}

.events-page-header1 {
    background-image: url("images/formbackupwebp_11zon.webp");
    /* height: 850px; */
}


input[type=text],
input[type=password],
input[type=date],
input[type=number],
input[type=email],
input[type=tel],
select {
    width: 100%;
    padding: 15px;
    /* margin: 5px 0 22px 0; */
    display: inline-block;
    border: none;
    background: #f1f1f1;
}


.ftype {
    display: flex;
}

.vthinkimage {
    margin-top: 35px;
}

.vthinkimage img {
    background-color: white;
    padding: 20px;
    height: 300px;
    width: 300px;
    border-radius: 20px;
}

.titleevents {
    float: right;
}

.titleevents h1 {
    color: white;
}

.maineventslogo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* .eventsdesign{
    height:350px;
    width:700px;
    background-color: white;
    margin-top: 40px;
    border-radius:0px 505px 505px 0px;
    margin-left: -15px;
} */
.eventsdesignmain {
    height: 1070px;
    background: linear-gradient(270deg, rgb(171, 0, 229) 0%, rgb(88, 20, 121) 100%);
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: 8px 4px 38px 6px;
}

/* .vthinkmage img{
    height: 250px;
    width: 250px;
    background-color: rgb(99, 57, 57);
    position: absolute;
    top: 57px;
    right: 90px 
    
} */
.veventscontent {
    margin-top: 50px;
    margin-bottom: 35px;

}

.veventscontent ul {
    list-style: none;
}

.veventscontent ul li {
    text-align: center;
    color: white;
    font-size: 18px;
    line-height: 30px;
}

.registerbutton {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* all */

:root {
    --main-blue: #71b7e6;
    --main-purple: #9b59b6;
    --main-grey: #ccc;
    --sub-grey: #d9d9d9;
}

/* body {
  background: linear-gradient(135deg, var(--main-blue), var(--main-purple));
  padding: 10px;
} */
.formback {
    background: linear-gradient(270deg, rgb(171, 0, 229) 0%, rgb(88, 20, 121) 100%);
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: 8px 4px 38px 6px;
}

/* container and form */

.container .title {
    font-family: "Lora", serif;
    /* font-size: 35px; */
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 600;
    position: relative;
}

.entry-title-form {
    font-family: "Lora", serif;
    /* font-size: 35px; */
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    font-weight: 600;
    color: white;
}

.container .title::before {
    content: "";
    position: absolute;
    height: 3.5px;
    width: 30px;
    background: linear-gradient(135deg, #ec8422, #d9eff5);
    left: 0;
    bottom: 0;
}

.container form .user__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 12px 0;
}

/* inside the form user details */
form .user__details .input__box {
    width: calc(100% / 2 - 20px);
    margin-bottom: 15px;
    color: white;
    font-size: 20px;
}

.user__details .input__box .details {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.user__details .input__box input {
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--main-grey);
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.role_input {
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--main-grey);
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.namedi .input__box input {
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--main-grey);
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.namedi .input__box {
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.namedi .phone_details {
    color: rgb(0, 0, 0);
    font-size: 20px;
}

#mobile {
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--main-grey);
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.input__box_field {
    background-color: #71b7e6;
    color: black;
    font-size: 20px;
    padding: 10px;
    width: -webkit-fill-available;
}

.gender__details {
    color: white;
    font-size: 20px;
}

.Volunteered__details {
    color: white;
    font-size: 20px;
}

.role__details {
    color: white;
    font-size: 20px;
}

.user__details .input__box input:focus,
.user__details .input__box input:valid {
    border-color: var(--main-purple);
}

/* inside the form gender details */

form .gender__details .gender__title {
    font-size: 20px;
    font-weight: 500;
}

form .gender__details .category {
    display: flex;
    width: 80%;
    margin: 15px 0;
    justify-content: space-between;
}

.gender__details .category label {
    display: flex;
    align-items: center;
}

.gender__details .category .dot {
    height: 18px;
    width: 18px;
    background: var(--sub-grey);
    border-radius: 50%;
    margin: 10px;
    border: 5px solid transparent;
    transition: all 0.3s ease;
}

#dot-1:checked~.category .one,
#dot-2:checked~.category .two,
#dot-3:checked~.category .three {
    border-color: var(--sub-grey);
    background: var(--main-purple);
}

/* form input[type="radio"] {
  display: none;
} */





form .Volunteered__details .Volunteered__title {
    font-size: 20px;
    font-weight: 500;
}

form .Volunteered__details .category {
    display: flex;
    width: 80%;
    margin: 15px 0;
    justify-content: space-between;
}

.Volunteered__details .category label {
    display: flex;
    align-items: center;
}

.Volunteered__details .category .dot1 {
    height: 18px;
    width: 18px;
    background: var(--sub-grey);
    border-radius: 50%;
    margin: 10px;
    border: 5px solid transparent;
    transition: all 0.3s ease;
}

#dot-11:checked~.category .on,
#dot-21:checked~.category .off,
#dot-3:checked~.category .three {
    border-color: var(--sub-grey);
    background: var(--main-purple);
}

/* form input[type="radio"] {
    display: none;
  } */


form .role__details .role__title {
    font-size: 20px;
    font-weight: 500;
}

form .role__details .category {
    display: flex;
    width: 80%;
    margin: 15px 0;
    justify-content: space-between;
}

.role__details .category label {
    display: flex;
    align-items: center;
}

.role__details .category .dot1 {
    height: 18px;
    width: 18px;
    background: var(--sub-grey);
    border-radius: 50%;
    margin: 10px;
    border: 5px solid transparent;
    transition: all 0.3s ease;
}

#dot-11:checked~.category .on,
#dot-21:checked~.category .off,
#dot-3:checked~.category .three {
    border-color: var(--sub-grey);
    background: var(--main-purple);
}

/* submit button */
.fill {
    margin: 10px 0px 30px 0px;
}

.fill h3 {
    text-align: center;
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    font-weight: 500;
}

.input__box button {
    width: 100%;
    padding: 15px;
}

form .button1 {
    height: 45px;
    margin: 45px 0;
}

form .button1 input {
    height: 100%;
    width: 100%;
    outline: none;
    color: #fff;
    border: none;
    font-size: 24px;
    font-weight: 500;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--main-blue), var(--main-purple));
    transition: all 0.3s ease;
}

form .button1 input:hover {
    background: linear-gradient(-135deg, var(--main-blue), var(--main-purple));
}

.namedi {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center; */
}

@media only screen and (max-width: 584px) {
    .container {
        max-width: 100%;
    }

    form .user__details .input__box {
        margin-bottom: 15px;
        width: 100%;
    }

    form .gender__details .category {
        width: 100%;
    }

    .container form .user__details {
        max-height: 300px;
        overflow-y: scroll;
    }

    .user__details::-webkit-scrollbar {
        width: 0;
    }
}





/* event-pagein new-design-starts */

.evform {
    background: white;
}

.mainevform {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .09);
    border-top: 6px solid #ed8522;
    position: relative;
    background: #fff;
    /* border: 1px solid #eee; */
    border-radius: 10px;
    transition: all .25s cubic-bezier(.02, .01, .47, 1);
    overflow: hidden;
    margin-bottom: 30px;
    padding: 30px 0px;
    -webkit-box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
    -o-box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
}

.evform h4 {
    color: #281483;
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 600
}

.event-meta-item .event-meta-list {
    background: #ece6f3;
    padding: 2px 15px;
    border-radius: 20px;
    color: #5f36b9;
    font-weight: 600;
    height: 33px;
    margin-bottom: 5px;
    line-height: 30px;
}

.maincontentform {
    padding: 20px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .09);
    border-radius: 12px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.hosted {
    padding: 20px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .09);
    border-radius: 12px;
    margin-bottom: 30px;
}

.hosted-title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #f38c1f;
}

.Hosted-By img {
    width: 90px;
    background: #fff;
    padding: 3px;
    border-radius: 12px;
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
    margin-bottom: 10px;
    height: 90px;
}

.hosted-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: .03em;
    color: #505050;
}

.hosted_head {
    font-size: 19px;
    margin-bottom: 8px !important;
    font-weight: 500;
}

.widget-content .author-contact .fa,
.sidebar-Location .category-list .fa {
    margin-right: 10px;
    color: #f38c1f;
    /* background: #ece6f3; */
    padding: 4px 3px 2px;
    /* width: 24px; */
    height: 24px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 5px;
    gap: 10px;
    display: flex;
}

.hosted-details p,
a {
    color: black;
    font-size: 17px;
}

.Location-box {
    padding: 20px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .09);
    border-radius: 12px;
}

.Location-title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #f38c1f;
}

.widget-content .fa,
.sidebar-Location .category-list .fa {
    margin-right: 10px;
    color: #e87f22;
    /* background: #ece6f3; */
    padding: 4px 3px 2px;
    /* width: 24px; */
    height: 24px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 5px;
    gap: 10px;
    display: flex;
}

.skp_btn_green {
    background: rgb(3, 131, 78);
    background: linear-gradient(90deg, rgb(196, 229, 242) 0%, #5a3c22 47%, rgb(232, 128, 36) 100%);
    color: #ffffff !important;
    border: none;
}

.skp_btn {
    margin-top: 15px;
    border-radius: 30px;
    padding: 10px 25px !important;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.default-sidebar .sidebar-widget {
    padding: 20px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .09);
    border-radius: 12px;
}

.skp_btn_main,
.skp_btn_main_sm {
    background: rgb(91, 11, 160);
    background: linear-gradient(156deg, rgb(188, 18, 253) 0%, rgb(78, 5, 117) 100%);
    color: #ffffff !important;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(159, 56, 233, 0.3);
    -moz-box-shadow: 0px 0px 0px 0px rgba(159, 56, 233, 0.3);
    box-shadow: 0px 0px 0px 0px rgba(159, 56, 233, 0.3);
    border: none;
}

/* event-pagein new-design-end */


/* homepade-event-section-css-starts */
.main-event-card {
    margin-top: 50px;
}

.Event-img-one {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 5;
    /* width: 100%; */
    /* height: 200px !important; */
    background-color: var(--primary-800);
    border-radius: 0.5rem;
    box-shadow: 0px 0px 5px white;
    aspect-ratio: 1 / 1;

}

.Event-img-one img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* height: 200px !important;
    width: 350px !important; */
    fill: var(--light);
}

.main-card-evnt-one {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.event-text-main h2 {
    font-size: 25px;
    font-family: "Lora", serif;
    color: rgb(0, 0, 0);
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    height: 65px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin: 10px 0px;
}

.d-icon-1 {
    font-size: 20px;
}

.date-event {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    gap: 10px;
    font-size: 29px;
    margin: 13px 0px;
}

.btn-r {
    width: 100%;
    display: block;
    text-align: center;
    background-color: #08011e;
    color: #ffffff !important;
    padding: 10px 1px;
    margin: 12px 0px;
    text-decoration: none;
    font-size: 20px;
    font-family: "Lora", serif;
    font-weight: 500;
    transition: transform 0.4s ease, background-color 0.4s ease;
    border-radius: 5px;
    cursor: pointer;
}

/* Hover effect */
.btn-r:hover {
    color: #ffffff !important;
    transform: scale(1.1);
    background-color: #120437;
    /* Optional: hover color change */
}

.event-text-main a:hover {
    text-decoration: none;
    background-color: #08011e;
    color: #ffffff;
}

/* homepade-event-section-css-End */



@media only screen and (max-width: 992px) {
    #card-3 {
        margin-top: 20px;
    }
}

@media only screen and (max-width:768px) {
    .Event-img-one img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* height: 200px !important;
        width: 450px !important; */
        fill: var(--light);
    }

    #card-2 {
        margin-top: 20px;
    }

    #card-3 {
        margin-bottom: 50px;
    }
}

/* Audio-css-starts */
.Audio-M-All {
    padding-top: 60px;
    padding-bottom: 60px;
}

.audio-main {
    margin: 30px 0px 8px 0px;
    /* background: linear-gradient(156deg, rgb(188, 18, 253) 0%, rgb(78, 5, 117) 100%); */
    background: linear-gradient(179deg, hsla(29, 85%, 53%, 1) 0%, hsl(41.2deg 92.34% 53.92%) 100%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.audio-main h2 {
    font-size: 20px;
    font-family: "Catamaran", sans-serif;
    color: white;
}

@media only screen and (max-width: 1200px) {
    audio {
        width: 250px;
    }
}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width:768px) {
    audio {
        width: 100%;
    }
}

/* Audio-css-End */
/* Dashbord-css-start */
.m-section-d {
    /* background: linear-gradient(299deg, #ec84227a, #d9eff58a); */
}

.main-heding-u-e {
    padding-top: 40px;
    padding-bottom: 60px;
}

.content-y-e h1 {
    font-size: 25px;
    font-family: "Catamaran", sans-serif;
    font-weight: 600;
    color: black;
}

.main-search-bar {
    padding: 30px 0px;

    .form {
        --input-bg: #ffffff;
        --padding: 1.5em;
        --rotate: 80deg;
        --gap: 2em;
        --icon-change-color: #15A986;
        --height: 60px;
        padding-inline-end: 1em;
        background: var(--input-bg);
        position: relative;
        border-radius: 4px;
        border: 1px solid black;
    }

    .form label {
        display: flex;
        align-items: center;
        width: 100%;
        height: var(--height);
        color: rgb(0, 0, 0);
    }

    .form input {
        width: 100%;
        padding-inline-start: calc(var(--padding) + var(--gap));
        outline: none;
        background: none;
        border: 0;
        font-size: 20px;
        font-family: "Catamaran", sans-serif;
        font-weight: 500;
        color: rgb(0, 0, 0) !important;
    }

    .form svg {
        color: #000000;
        transition: 0.3s cubic-bezier(.4, 0, .2, 1);
        position: absolute;
        height: 25px;
    }

    .icon {
        position: absolute;
        left: var(--padding);
        transition: 0.3s cubic-bezier(.4, 0, .2, 1);
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .swap-off {
        transform: rotate(-80deg);
        opacity: 0;
        visibility: hidden;
    }

    .close-btn {
        background: none;
        border: none;
        right: calc(var(--padding) - var(--gap));
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #020202;
        padding: 0.1em;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        transition: 0.3s;
        opacity: 0;
        transform: scale(0);
        visibility: hidden;
    }

    .form input:focus~.icon {
        transform: rotate(var(--rotate)) scale(1.3);
    }

    .form input:focus~.icon .swap-off {
        opacity: 1;
        transform: rotate(-80deg);
        visibility: visible;
        color: var(--icon-change-color);
    }

    .form input:focus~.icon .swap-on {
        opacity: 0;
        visibility: visible;
    }

    .form input:valid~.icon {
        transform: scale(1.3) rotate(var(--rotate))
    }

    .form input:valid~.icon .swap-off {
        opacity: 1;
        visibility: visible;
        color: var(--icon-change-color);
    }

    .form input:valid~.icon .swap-on {
        opacity: 0;
        visibility: visible;
    }

    .form input:valid~.close-btn {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        transition: 0s;
    }
}


.main-title-e-i {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, hsla(29, 85%, 53%, 1) 0%, hsla(194, 68%, 87%, 1) 100%);
    padding: 18px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.title-e h1 {
    font-size: 20px;
    font-family: "Lora", serif;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0px;
    padding: 0px;
}

.title-e-i,
i {
    font-size: 31px;
    font-family: "Lora", serif;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.main-ev-btn {

    .button-ev {
        padding: 22px 20px;
        border-radius: 0.5rem;
        border: none;
        font-size: 25px;
        font-family: "Lora", serif;
        font-weight: 600;
        color: rgb(255, 255, 255);
        background-color: #08011e;
        text-align: center;
        position: relative;
        cursor: pointer;
    }

    .button-ev::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        border-radius: 0.5rem;
        background-color: #08011e;
        box-shadow: inset 0 0 12px rgba(151, 200, 255, 0.44);
        z-index: -1;
    }

    .button-ev::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        border-radius: 0.5rem;
        background-color: #08011e;
        box-shadow: inset 0 0 12px rgba(151, 200, 255, 0.44);
        z-index: -1;
    }

    .button-ev:hover::after {
        opacity: 1;
    }

    .button-border {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        border-radius: 0.5rem;
        z-index: -1;
    }

    .button-border::before {
        content: "";
        position: absolute;
        border-radius: 0.5rem;
        padding: 1px;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(184, 238, 255, 0.24) 0%,
                rgba(184, 238, 255, 0) 100%),
            linear-gradient(0deg, rgba(184, 238, 255, 0.32), rgba(184, 238, 255, 0.32));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        pointer-events: none;
    }
}

@media only screen and (max-width: 992px) {
    .title-e h1 {
        font-size: 14px;
    }

    .title-e-i,
    i {
        font-size: 23px;
    }

    .main-ev-btn {
        .button-ev {
            font-size: 14px;
        }
    }

    .main-title-e-i {
        padding: 15px 16px;
    }
}

@media only screen and (max-width:768px) {
    .main-ev-btn {
        .button-ev {
            padding: 22px 0px;
            font-size: 14px;
        }
    }
}

/* Dashbord-css-End */

/* Gallery-css-section-starts */

.gallery {
    padding: 60px 0;
    background-color: #c7dfe5;
}

.g-enet-t h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-family: "Lora", serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    margin: 30px 0;
}

.gallery-title {
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
}

.gallery-container {
    position: relative;
    overflow: hidden;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.gallery-row {
    display: flex;
    transition: transform 0.3s ease;
}

.gallery-image {
    flex: 0 0 auto;
    width: calc((100% - 30px) / 4);
    /* 4 images per row with spacing */
    margin-right: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-216%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-arrow {
    background: linear-gradient(223deg, hsl(30.85deg 89.83% 53.73%) 0%, hsl(30.85deg 89.83% 53.73%) 100%);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}

.nav-arrow.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: #000;
}

.vie-slid-g-btn {
    display: block;
    margin: 1.5rem auto;
    padding: 10px 20px;
    background-color: #08011e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    max-width: 200px;
    text-align: center;

    a {
        color: white;
        text-align: center;
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    .gallery-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* Gallery-css-section-End*/

/* The most uplifting sadhana of a shravak-section-strat  */
.The-main-sadhna {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%235a4230' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
    /* height: 150px; */
    background: linear-gradient(90deg, hsla(29, 85%, 53%, 1) 0%, hsla(194, 68%, 87%, 1) 100%);
    padding: 40px 15px 40px 15px;
}

.the-enet-t h1 {
    /* font-size: clamp(1rem, 4.5vw, 3rem) !important; */
    font-family: 10px !important;
    font-family: "Lora", serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    margin: 30px 0;
}

.the-enet-t h6 {
    font-family: 5px !important;
    font-family: "Lora", serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
}

.container-spirit {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(to bottom, #ffffff, var(--light));
} */

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 30px;
}

.spiritual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.spiritual-card {
    background: #08011e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spiritual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    width: 180px;
    height: 180px;
    margin: 25px auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f9a226;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spiritual-card:hover .card-image {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 26px;
    font-family: "Lora", serif;
    text-transform: uppercase;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #f9a226;
}

.card-text {
    font-family: "Lora", serif;
    color: white;
    font-size: 16px;
    text-align: center;
}

.sanskrit-text {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-top: 15px;
    line-height: 1.7;
}

.decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 15px 15px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

.om-symbol {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    top: -15px;
    right: -15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--accent), #f2d694);
    border-radius: 12px;
    color: var(--dark);
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .spiritual-grid {
        gap: 20px;
    }

    .card-image-container {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    header {
        /* padding: 40px 20px 30px; */
    }

    h1 {
        font-size: 1.8rem;
    }

    .card-image-container {
        width: 120px;
        height: 120px;
    }

    .spiritual-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 30px 20px;
    }
}

/* Audio-poup-style-css */
/* 
.Ap-title h1 {
    color: #ff6b00;
    font-size: 35px;
    font-family: "Catamaran", sans-serif;
    margin: 0px;
}

.Au-po-btn {
    border-radius: 5px;
    border: 0;
    padding: 10px 15px;
    box-shadow: 2px 3px 7px grey;
    width: 100%;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #f38c1e3b;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    color: #fff;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    padding: 6px 20px;
    background-color: #ffffff;
    z-index: 10;
    border-bottom: 1px solid #2a2a2a;
}

.popup-body {
    padding: 20px;
    max-height: calc(90vh - 60px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ffffff #121212;
}
.popup-body::-webkit-scrollbar {
    width: 8px;
}

.popup-body::-webkit-scrollbar-track {
    background: #121212;
}

.popup-body::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 4px;
}

.Ap-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    box-shadow: 2px 3px 7px grey;
    background-color: #ff6b00;
    transition: color 0.3s;
    padding: 0px 15px;
    border-radius: 6px;
}

.close-btn:hover {
    color: #ccc;
}

.audio-player {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 20px;
}

.audio-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 160px;
}

.audio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6b00;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
}

.audio-info {
    padding: 15px 0;
}

.audio-meta .tag {
    color: #aaa;
    text-decoration: none;
}

.audio-meta .tag:hover {
    text-decoration: underline;
}

.audio-title {
    font-family: "Catamaran", sans-serif;
    font-size: 19px;
    margin: 0 0 10px 0;
    font-weight: bold;
    display: flex;
    height: 47px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
}

.audio-title .music-icon {
    font-size: 21px;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    background-color: #ffffff;
    padding: 8px 10px;
    border: 1px solid #000000;
    border-radius: 30px;
}

.play-btn {
    background-color: #121212;
    color: white;
    border: 1px solid white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    flex-shrink: 0;
}

.time {
    font-size: 11px;
    color: #aaa;
    flex-shrink: 0;
}

.progress-container {
    flex-grow: 1;
    height: 4px;
    background-color: #333;
    position: relative;
    cursor: pointer;
    min-width: 50px;
}

.progress-bar {
    height: 100%;
    background-color: #f9a226;
    width: 0%;
}

.volume-control,
.download-btn {
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
    padding: 0 2px;
}

.audio-description {
    padding: 0 0 10px;
    line-height: 1.4;
    color: #ccc;
    font-size: 12px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-show {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.col-md-4 {
    padding: 10px;
}

@media (max-width: 768px) {
    .popup-content {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
    }

    .popup-body {
        max-height: calc(100vh - 60px);
    }
} */


/* End */

/* प्राचीन तीर्थ और जिनालय-section-css-Start */
/* .prachin-header {
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-radius: 10px;
}

.Prachin-title h1 {
    color: #ed8421;
    font-size: 35px;
    font-family: "Catamaran", sans-serif;
    margin: 0px;
}

.pra-containet h2 {
    color: #050505;
    font-size: 21px;
    font-family: "Catamaran", sans-serif;
    margin: 20px 0px 20px 0px;
}

.prachin-btn {
    border-radius: 5px;
    border: 0;
    padding: 10px 15px;
    box-shadow: 2px 3px 7px grey;
    width: 100%;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 60%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2);
}

.pra-close {
    color: #ffffff;
    background-color: #ed8421;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 0px 15px;
    border-radius: 6px;
}

.pra-close:hover {
    color: rgb(255, 255, 255);
}

.pra-containet ul li {
    font-size: 25px;
}

@media (max-width:992px) {
    .modal-content {
        background-color: #ffffff;
        margin: 15% auto;
        padding: 20px;
        border-radius: 5px;
        width: 80%;
        box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2);
    }
}

@media (max-width:768px) {
    .modal-content {
        width: 100%;
    }

    .Prachin-title h1 {
        font-size: 25px;
    }

    .pra-containet h2 {
        font-size: 15px;
    }

    .pra-containet ul li {
        font-size: 15px;
    }
}

@media (max-width:400px) {
    .modal-content {
        width: 100%;
    }

    .Prachin-title h1 {
        font-size: 20px;
    }

    .pra-containet h2 {
        font-size: 11px;
    }

    .pra-containet ul li {
        font-size: 11px;
    }
} */

/* प्राचीन तीर्थ और जिनालय-section-css-End */

/* 

.tabs-container-event {
    width: 100%;
    height: auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.tabs {
    padding: 10px 20px 15px 20px;
}

.tab-links-Ev {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    gap: 3px;

    button:focus {
        outline: none;
    }
}

.tab-link-ev {
    background: none;
    border: none;
    font-size: 20px;
    font-family: "Catamaran", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    color: #000000;
    padding: 5px 13px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.active,
.tab-link-ev:hover {
    color: #ed8522 !important;
    border: none;
}

.tab-link-ev i {
    margin-right: 10px;
}

.tab-link-ev::after {
    content: '';
    position: absolute;
    border: none;
    width: 0;
    height: 3px;
    bottom: -1px;
    left: 50%;
    background: linear-gradient(45deg, #ed8522, #c5e7f3);
    transition: all 0.4s ease;
}

.tab-link-ev.active::after {
    width: 100%;
    left: 0;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
    padding: 5px 10px 15px 10px;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #b84de5, #7d41ff);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.4s ease;
    font-weight: 500;
    margin-top: 20px;
}

.cta-btn:hover {
    background: linear-gradient(45deg, #9c3bce, #6b3ee8);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b84de5;
    outline: none;
}


.faq-list {
    padding: 0;
    list-style: none;
}

.faq-list li {
    margin-bottom: 10px;
}

.faq-list li strong {
    font-weight: 600;
}


@media screen and (max-width: 600px) {
    .tab-link-ev {
        background: none;
        border: none;
        font-size: 14px;
        font-family: "Catamaran", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        color: #000000;
        padding: 9px 13px;
        cursor: pointer;
        position: relative;
        transition: color 0.3s ease;
        white-space: nowrap;
    }

    .tab-links-Ev {
        overflow-x: auto;
        overflow-y: hidden;
    }

    
    .tab-link {
        text-align: center;
        width: 100%;
        padding: 15px 0;
    }
} */

.tabs-container {
    width: 100%;
    max-width: 700px;
    height: auto;
    /* Make the height flexible */
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.tabs {
    padding: 10px 20px 15px 20px;
    /* Increased padding */
}

.tab-links {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
    overflow-y: hidden;

    button:focus {
        outline: none;
    }
}

.tab-link-ev {
    background: none;
    border: none;
    font-size: 20px;
    font-family: "Catamaran", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    color: #000000;
    padding: 5px 13px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.active,
.tab-link-ev:hover {
    color: #ed8522 !important;
    border: none !important;
}

.tab-link-ev i {
    margin-right: 10px;
}

.tab-link-ev::after {
    content: '';
    position: absolute;
    border: none;
    width: 0;
    height: 3px;
    bottom: -1px;
    left: 50%;
    background: linear-gradient(45deg, #ed8522, #c5e7f3);
    transition: all 0.4s ease;
}

.tab-link-ev.active::after {
    width: 100%;
    left: 0;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
    padding: 5px 10px 15px 10px;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.3s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.3s ease forwards;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    /* More padding */
    background: linear-gradient(45deg, #b84de5, #7d41ff);
    /* Purple gradient */
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.4s ease;
    font-weight: 500;
    margin-top: 20px;
}

.cta-btn:hover {
    background: linear-gradient(45deg, #9c3bce, #6b3ee8);
    /* Darker gradient on hover */
    outline: none;
}

/* Navigation Buttons */
.navigation-buttons {
    /* display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 20px 20px 20px; */
    display: flex;
    justify-content: end;
    margin: 20px 0px;
    padding: 0 20px 20px 20px;
    position: sticky;
    bottom: 0;
    z-index: 94;
    background: #fff;
    /* Optional: Add white background if you want it to stay clean when sticky */
    padding-top: 10px;
}

/* .nav-btn {
    padding: 13px 63px;
    background: #ed8522;
    color: #08011e;
    border: none;
    font-size: 23px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.4s ease;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 15px;
}

.nav-btn:hover {
    background: #ed8522;
} */

.nav-btn {
    padding: 8px 50px;
    background: linear-gradient(135deg, #ed8522, #ffad51);
    /* Better orange gradient */
    color: #08011e;
    border: none;
    font-size: 22px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(237, 133, 34, 0.4);
    /* Soft orange shadow */
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    /* width: 100%; */
}

.nav-btn:hover {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    /* Slightly lighter on hover */
    box-shadow: 0 10px 25px rgba(237, 133, 34, 0.6);
    transform: translateY(-2px);
    /* Lift effect */
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    /* Increased padding for inputs */
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b84de5;
    outline: none;
}

/* FAQ List */
.faq-list {
    padding: 0;
    list-style: none;
}

.faq-list li {
    margin-bottom: 10px;
}

.faq-list li strong {
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width:768px) {
    .nav-btn {
        padding: 13px 33px;
    }

    .nav-btn:hover {
        background: #ed8522;
    }
}

@media screen and (max-width: 600px) {
    .nav-btn {
        padding: 8px 25px;
        font-size: 18px;
    }

    .tab-links {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .tab-link-ev {
        text-align: center;
        width: 100%;
        padding: 15px 0;
    }

    .past-e-small {
        margin-top: 15px;
    }
}

/* gallery */
.gallery-heading {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.gallery-thumb {
    display: flex;
    justify-content: center;
    margin: 0 auto 20px;
}

.gallery-thumb img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    padding: 0 20px 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.no-gallery {
    text-align: center;
    font-size: 18px;
    color: #777;
}