.blur-section{
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.evnt_slider .e-n-carousel.swiper {
    overflow-x: auto;
}
.evnt_slider .e-n-carousel.swiper .swiper-wrapper {
    margin-bottom: 16px;
}
.underline_text span.elementor-button-text {
    text-underline-offset: 7px;
    text-decoration: underline;
}

.underline_text a.elementor-button.elementor-button-link:hover svg path {
    fill: #fff;
}
/* new css */



.cards_grid {
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
}


.crd.e-con.e-flex {
    max-width: unset !important;
    flex: unset !important;
    min-width: 380px !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.crd:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0000002e;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 1) 100%
    );
    transition:.2s;
}


.crd{
    transition:.1s;
}
.crd:hover:after {
        background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.90) 100%
    );
    transition:.2s;
}

.bg_zoom{
    position: relative;
    overflow: hidden;
}

.bg_zoom::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
    z-index: 0;
    transform: scale(1);
}

.bg_zoom:hover::before{
    transform: scale(1.05);
}

.bg_zoom *{
    position: relative;
    z-index: 1;
}
.icon_colr a:hover svg path {
    fill: #D7C79C;
}
.hvr_white_icon a:hover svg path {
    fill: #FFF;
}
.btn_width a {
    width: 100% !important;
}
.ftr_nwsltr span.wpcf7-spinner {
    position: absolute;
}
.lft_cl {
    padding-right: 0px !important;
}
.mail_input {
    padding: 12px 15px 12px 15px !important;
    background-color: #211C18 !important;
    border-color: #2D2824 !important;
    border-radius: 0px 0px 0px 0px !important;
	color: #76716c !important;
}
.mail_input::placeholder {
    color: #76716c !important;
}
.ftr_nwsltr .wpcf7-submit {
    background-color: #D7C79C;
    color: #3E4827 !important;
    transition-duration: 0.3ms;
    border-radius: 0px;
    font-family: "Inter", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 2px;
    padding: 16px 25px 15px 25px;
    border: 1px solid #D7C79C;
}
.ftr_nwsltr .wpcf7-submit:hover,.ftr_nwsltr .wpcf7-submit:focus{
	background-color: #3E4827;
    color: #D7C79C !important;
	
}
span.wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-response-output {
    margin: 0px !important;
    width: 85%;
	color:green !important;
	border-color:green !important;
}
.wpcf7-form.invalid .wpcf7-response-output {
    border-color: red!important;
    color: red !important;
}
input.wpcf7-not-valid {
    border-color: red !important;
}
.cta_pg_frm .wpcf7-form-control {
    padding: 12px 15px;
    border-radius: 0px;
    font-family: 'Inter';
    color: #000;
}
.cta_pg_frm .wpcf7-form-control::placeholder {
    color: #000;
}
.pd_rt {
    padding-right: 0px !important;
}

/* ==============================
   BASE CALENDAR WRAPPER
============================== */
#custom-calendar {
    max-width: 850px;
    margin: 60px auto;
    padding: 30px;
    background: #3E4828; /* MAIN BASE */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
    color: #fff;
    font-family: "Inter", sans-serif;
}

/* ==============================
   HEADER
============================== */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* MONTH TEXT */
#calendar-month-year {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #D7C79C; /* GOLD */
    text-transform: uppercase;
}

/* NAV BUTTONS */
.calendar-header button {
    background: transparent;
    border: 1px solid #D7C79C;
    color: #D7C79C;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.calendar-header button:hover {
    background: #D7C79C;
    color: #3E4828;
}

/* ==============================
   WEEK DAYS
============================== */
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85); /* WHITE */
}

.calendar-weekdays div {
    text-align: center;
    padding: 10px 0;
}

/* ==============================
   DAYS GRID
============================== */
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

/* DEFAULT DAY */
.calendar-days div {
    min-height: 70px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.9); /* WHITE */
    transition: 0.25s ease;
    position: relative;
}

/* HOVER EFFECT */
.calendar-days div:hover {
    background: rgba(215, 199, 156, 0.12); /* GOLD HOVER */
    transform: translateY(-2px);
}

/* ==============================
   ACTIVE EVENT DAY
============================== */
.active-date {
    background: rgba(215, 199, 156, 0.15); /* GOLD SOFT */
    border: 1px solid #D7C79C; /* GOLD BORDER */
    cursor: pointer;
    font-weight: 500;
}

/* GOLD DOT */
.active-date::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #D7C79C; /* GOLD */
    border-radius: 50%;
    position: absolute;
    bottom: 8px;
}

/* ==============================
   TODAY
============================== */
.today {
    border: 1px solid #ffffff;
    background: rgba(255,255,255,0.08);
}

/* ==============================
   MODAL
============================== */
#calendarModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

#calendarModal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* MODAL BOX */
.modal-box {
    width: 520px;
    max-width: 90%;
    background: #3E4828; /* BASE GREEN */
    border: 1px solid #D7C79C;
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* CLOSE BUTTON */
.modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #D7C79C;
}

/* TITLE */
#modalTitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #D7C79C; /* GOLD */
    letter-spacing: 1px;
}

/* CONTENT */
#modalContent h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #fff; /* WHITE */
}

#modalContent div {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}