@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'),
        url('../fonts/poppins-v24-latin-regular.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2'),
        url('../fonts/poppins-v24-latin-500.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2'),
        url('../fonts/poppins-v24-latin-800.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2'),
        url('../fonts/playfair-display-v40-latin-regular.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/playfair-display-v40-latin-500.woff2') format('woff2'),
        url('../fonts/playfair-display-v40-latin-500.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2'),
        url('../fonts/playfair-display-v40-latin-600.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2'),
        url('../fonts/playfair-display-v40-latin-700.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /*font-family: "Playfair Display", serif;*/
    font-family: "Poppins", sans-serif;
}

:root {
    --primary: #27514A;
    --secondary: #FFCB31;
    --primary_text: #27514A;
    --secondary_text: #FFCB31;
}

/* ===================================== Start Header ===================================== */
.top_header {
    background-color: var(--primary);
    color: white;
    text-align: center;
    border: 5px solid #FFCB31;
    height: 46px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.logo_img {
    padding: 10px 0;
}

.main_header {
    position: relative;
    z-index: 1;
    background-color: var(--primary);
    border-width: 4px;
    border-style: solid;
    border-color: #FFFFFF;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_header a {
    color: white;
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    color: var(--secondary_text);
    /* active link color (yellow je image ma che) */
    font-weight: 700;
    font-size: 20px;
}

.main_header .navbar-nav {
    gap: 60px;
    margin: auto;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--secondary_text);
}

.green_logo {
    width: 54%;
}

.offcanvas {
    background-color: var(--primary);
}

.offcanvas.offcanvas-end {
    width: 233px;
}

.fixed-top {
    position: absolute;
    top: 59px;
    right: 0;
    z-index: 1030;
}

.navbar>.container-fluid {
    justify-content: end;
}

.sidebar_menu {
    gap: 10px;
    margin-left: 27px;
    margin-top: 10px;
}

.nav-link {
    color: white;
}

/* ===================================== End Header ===================================== */

/* ===================================== Start Home ===================================== */
.banner_bg {
    position: relative;
    margin-top: -34px;
}

.banner_content {
    position: absolute;
    top: 204px;
}

.banner_img {
    /*height: 680px;*/
    /*object-fit: cover;*/
}

.banner_info {
    position: absolute;
    top: 0;
    color: white;
    width: 373px;
    text-align: center;
    left: 110px;
}

.banner_logo {
    padding-bottom: 27px;
    padding-top: 8px;
}

.banner_info p {
    font-family: "Playfair Display", sans-serif;
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 43px;
    margin-bottom: 0;
}

.banner_content a {
    text-decoration: none;
    font-family: "Playfair Display", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 227px;
    height: 44px;
    border: 3px solid #FFCB31
}

.slider-wrapper {
    position: relative;
    padding: 20px 40px;
    margin-bottom: 65px;
}

/* Card */
.slider-card {
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 24px;
    padding: 10px;
}

.slider-card img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

/* Owl spacing */
.custom-slider .owl-stage-outer {
    padding: 10px 0;
}

/* Navigation arrows */
.custom-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    border: 3px solid #ffc107 !important;
    width: 44px;
    height: 44px;
    font-size: 22px !important;
    color: var(--primary_text);
}

.custom-slider .owl-nav .owl-prev {
    left: -60px;
    display: flex;
    justify-content: center;
}

.custom-slider .owl-nav .owl-next {
    right: -60px;
    display: flex;
    justify-content: center;
}

.custom-slider .owl-nav button:hover {
    background: #fffbe6 !important;
}

.custom-slider .owl-nav.disabled {
    display: block;
}

.gallery_header a {
    color: var(--primary_text);
    position: relative;
}

.live_darshan_bg {
    object-fit: cover;
    background: url("../images/home/live_darshan_bg.webp");
    padding-bottom: 23px;
}

.devine_msg_text {
    text-align: center;
    padding-top: 39px;
    position: relative;
    margin-bottom: 16px;
}

.devine_msg_text h2 {
    color: var(--primary_text);
    padding-top: 16px;
    font-weight: 800;
    position: relative;
    font-family: "Playfair Display", sans-serif;
}

.decoration_img {
    height: 53px;
}

.gallery-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 66px;

}

.gallery-tabs {
    display: flex;
    gap: 12px;
}

.gallery-tabs .tab.active {
    background: #1f4f46;
    color: #fff;
    border-color: #1f4f46;
}

.gallery-item.hide {
    display: none !important;
}

.view-all {
    position: absolute;
    right: 0;
    bottom: -14px;
    transform: translateY(-50%);
    color: #1f4f46;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

.view-all:hover {
    text-decoration: underline;
}

.gallery-tabs .tab {
    padding: 10px 28px;
    border-radius: 40px;
    border: 2px solid #ffc107;
    background: #fff;
    color: var(--primary_text);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

.gallery-tabs .tab.active {
    background: var(--primary);
    color: #ffffff;
    border-color: #ffc107;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-bottom: 71px;
}

.gallery.auto-layout .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
}

.img_1 {
    position: relative;
    grid-row: span 3 / span 3;
    grid-column-start: 1;
}

.img_2 {
    grid-row: span 3;
    grid-column-start: 1;
    grid-row-start: 4;
    position: relative;
}

.img_3 {
    grid-row: span 6 / span 6;
    grid-column-start: 2;
    grid-row-start: 1;
    position: relative;
}

.img_4 {
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 1;
    position: relative;
}

.img_5 {
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 4;
    position: relative;
}

.left_radhakrishna,
.right_radhakrishna {
    position: absolute;
    bottom: 0;
    z-index: -1;
    animation: floatMove 5s ease-in-out infinite;
}

.right_radhakrishna {
    right: 0;
    top: 8%;
    animation-delay: 5s;
}

@keyframes floatMove {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

.download_btn {
    overflow: hidden;
}

.dowonload_option {
    width: 34px;
    height: 34px;
    background: #FFFFFF;
    position: absolute;
    top: 8px;
    right: 8px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    /* new */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85);
    transition: all 0.25s ease;
    z-index: 5;
}

.download_btn:hover .dowonload_option {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: var(--primary);
    border: 5px solid #FFCB31;
    padding: 14px 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.ticker {
    display: flex;
    width: max-content;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-content {
    padding-right: 10px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*.videos-main {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 30px;*/
/*    margin-top: 40px;*/
/*}*/

/*.video-wrapper video {*/
/*    max-width: 261px;*/
/*    width: 100%;*/
/*    max-height: 376px;*/
/*    height: 100%;*/
/*    border-radius: 7px;*/
/*}*/

/*.video-wrapper {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*}*/

/*.video-thumbnail {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/
/*.videos-main {*/
/*    margin-top: 40px;*/
/*}*/

/*.video-wrapper {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*    border-radius: 7px;*/
/*    cursor: pointer;*/
/*}*/

/*.video-thumbnail {*/
/*    width: 100%;*/
/*    height: 376px;*/
/*    object-fit: cover;*/
/*    border-radius: 7px;*/
/*}*/

/*!* Hover Download *!*/
/*.video-download {*/
/*    position: absolute;*/
/*    right: 20%;*/
/*    !*inset: 0;*!*/
/*    !*background: rgba(0,0,0,0.4);*!*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    opacity: 0;*/
/*    transition: 0.3s ease;*/
/*}*/
.videos-main {
    margin-top: 40px;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 376px;
    object-fit: cover;
    border-radius: 8px;
}

/* Download Hover */
.video-download {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
}

.video-wrapper:hover .video-download {
    opacity: 1;
}

/* Modal */
.custom-close-btn,
.custom-download-btn {
    background: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper:hover .video-download {
    opacity: 1;
}

.video-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.video-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
}

.modal-header {
    display: flex;
    justify-content: space-between;
}

.modal-dialog video {
    width: 100%;
    height: auto;
}

.close-icon {
    pointer-events: none;
}

#videoModal .modal-dialog {
    max-width: 457px;
    width: 100%;
    height: fit-content;
}

#videoModal .modal-content {
    height: 100%;
    padding: 0;
    border: none;
    background-color: transparent;
}

#videoModal .modal-body {
    padding: 0;
    height: 100%;
}

#modal-video {
    width: 613px;
    height: 100%;
    object-fit: contain;
}

.custom-close-btn {
    background-color: transparent;
    /*border-radius: 8px;*/
    /*width: 30px;*/
    /*height: 30px;*/
    opacity: 1;
    left: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}


.custom-download-btn {
    background: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.footer {
    background: #244f46;
    color: #d8e6df;
    font-family: 'Arial', sans-serif;
}

.footer {
    background: #244f46;
    color: #d8e6df;
    font-family: 'Arial', sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px 30px;
}

.footer_top {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.footer_logo h2 {
    font-size: 40px;
    color: #fff;
}

.footer_shlok {
    color: #f4c430;
    font-size: 18px;
    margin: 10px 0;
}

.footer_quote {
    font-size: 14px;
    opacity: 0.8;
}

.footer_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer_col h4 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-family: "Playfair Display", sans-serif;
    font-weight: 500;
}

.footer_col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer_col ul {
    list-style: none;
    padding: 0;
}

.footer_col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
}

.footer_col ul li a {
    color: #F6F1E7CC;
    text-decoration: none;
    transition: 0.3s;
}

.footer_col ul li a:hover {
    color: #f4c430;
}

.footer_contact li {
    font-size: 14px;
}

.footer_social {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.footer_social a {
    width: 36px;
    height: 36px;
    background: #12263A;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.footer_social a:hover {
    background: #f4c430;
    color: #000;
}

/* Bottom */
.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer_links a {
    color: #d8e6df;
    margin-left: 15px;
    text-decoration: none;
}

.footer_links a:hover {
    color: #f4c430;
}

.footer_col .temple_time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer_col .temple_time .label {
    color: #d8e6df;
}

.footer_col .temple_time .time {
    color: #D4AF37;
    font-weight: 500;
}


.header-scroller-wrapper {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 4;

    /* Animation */
    /*animation: scrollFloat 2.5s ease-in-out infinite;*/

    /* Smooth hide/show */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* When visible */
.header-scroller-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*@keyframes scrollFloat {*/
/*    0% { transform: translateY(0); }*/
/*    50% { transform: translateY(-10px); }*/
/*    100% { transform: translateY(0); }*/
/*}*/

.view_more_bnt {
    color: #27514A;
    border: 1px solid #27514A;
    padding: 10px 15px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.slider-wrapper .row>div {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.slider-wrapper .row>div.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    height: auto;
}

/*janki*/
.about_us p {
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0;
}

.about_us h5 {
    color: var(--primary_text);
    font-weight: 600;
    font-size: 20px;
    padding: 10px 0 5px 0;
}

.about_section {
    width: 100%;
    background-color: #eef3f1;
    padding: 80px 0;
}

.about_container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.about_title {
    font-size: 32px;
    font-weight: 600;
    color: #2f4f4f;
    font-family: "Playfair Display", serif;
}

/*===========================================================reels=======================================================*/
.reels_section {
    padding: 40px 0;
    text-align: center;
}

.divider img {
    max-width: 280px;
    margin-bottom: 10px;
}

.section_title {
    font-weight: 800;
    font-size: 32px;
    color: var(--primary_text);
    margin-bottom: 40px;
    font-family: "Playfair Display", serif;
}

.card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.save_icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary_text);
    color: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.2s ease;

    &:hover {
        background: var(--secondary_text);
    }
}

/*============================================================video==================================================*/
.custom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.custom-close:hover {
    background: red;
}

/* Outer frame */
.video-card {
    background: linear-gradient(135deg, #f5b61a, #f39c12);
    padding: 6px;
    /* frame thickness */
    border-radius: 14px;
    cursor: pointer;
}

/* Inner image box */
.video-inner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

/* Image */
.video-inner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Play button */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card:hover .play-icon {
    background: rgba(0, 0, 0, 0.8);
}

.gallery_img {
    margin: 15px 0;
}

/* ============================================= Start Reels ======================================================*/
.reels-view {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    z-index: 1000;
    /* Ensure on top */
    /* background: #000; */
}

.reels-view .footer {
    display: none;
}

.reels-view header {
    flex-shrink: 0;
}

.reels-view main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    /* Fix for scroll container expansion */
}

.reels-view section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    overflow: hidden;
    /* Fix for scroll container expansion */
    /* Ensure section takes full width */
}

.reels_app {
    width: 100%;
    flex: 1;
    min-height: 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Fix for scroll container expansion */
}

.back_home_btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.back_home_btn:hover {
    color: #ffcb31;
}

/*.reels_container {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    overflow-y: scroll;*/
/*    scroll-snap-type: y mandatory;*/
/*    scrollbar-width: none;*/
/*    !* Firefox *!*/
/*    -ms-overflow-style: none;*/
/*    !* IE/Edge *!*/
/*    max-width: 420px;*/
/*    touch-action: pan-y;*/
/*    !* Ensure touch scrolling works *!*/
/*}*/

.reels_container {
    height: 100%;                 /* 🔥 must */
    width: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 420px;
    touch-action: pan-y;
}
.reels_container::-webkit-scrollbar {
    display: none;
}

/*.reel {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    scroll-snap-align: start;*/
/*    position: relative;*/
/*    background-color: #111;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    overflow: hidden;*/
/*}*/
.reel {
    height: 100%;                 /* 🔥 must */
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;      /* 🔥 extra strong snap */
    position: relative;
    background-color: #111;
    overflow: hidden;
}
body.reels-view {
    overflow: hidden;
    height: 100vh;
}

.reel_media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reel_media img,
.reel_media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Fade from bottom */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
    pointer-events: none;
}

.reel_top_menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.menu_dots {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.saved_reels_badge {
    background: #fff;
    color: #000;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.save_btn .active_img {
    display: none;
}

.reel_actions {
    position: absolute;
    bottom: 50px;
    right: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.action_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
    cursor: pointer;
}

.action_item img,
i {
    font-size: 28px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s;
}

.action_item:hover img,
i {
    transform: scale(1.1);
}

.action_item span {
    font-size: 13px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.action_item.profile_thumb img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 2px solid #fff;
}

.reel_info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    width: 70%;
    color: #fff;
    text-align: left;
}

.reel_info .username {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.reel_info .audio_info {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    /*opacity: 0.9;*/
}

.reel_info .audio_info i {
    font-size: 12px;
}

/* ---------------------------START COMMENT MODAL STYLES ------------------------- */
.comment_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 10000;
    font-family: Poppins, 'sans-serif';
}

.comment_backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.comment_box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fff;
    width: 100%;
    backdrop-filter: blur(500px);
    max-width: 420px;
    height: 70vh;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
    }

    to {
        transform: translate(-50%, 0);
    }
}

.user_name {
    color: #8A8B8F;
    font-size: 13px;
    font-weight: 500;

}

.comment_header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 16px 6px;
    position: relative;
}

.comment_header h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #151923;
}

.close_comment {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.comment_list {
    flex: 1;
    overflow-y: auto;
    padding: 13px;
}

.comment_item {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.comment_avatar {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    object-fit: cover;
}

.comment_content {
    flex: 1;
}

.c_user {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 4px;
}

.creator_badge {
    color: #FE2C55;
    font-size: 12px;
    font-weight: 500;
}

.c_text {
    font-size: 15px;
    color: #151923;
    margin-bottom: 2px;
    line-height: 1.4;
}

.c_meta {
    font-size: 12px;
    color: #888;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.reply {
    font-size: 14px;
    font-weight: 500;
    color: #8A8B8F;
    text-decoration: none;
}

.viewreply {
    color: #8A8B8F;
}

.view_replies {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 13px;
    color: #8A8B8F;
}

.c_like {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #888;
    font-size: 12px;
    margin-top: 10px;
}

.c_like i {
    font-size: 16px;
    cursor: pointer;
}

.comment_input_area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff;
    margin-right: 15px;
    width: 100%;
}

.my_avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.input_wrapper {
    /*flex: 1;*/
    display: flex;
    align-items: center;
    background: #f1f2f6;
    border-radius: 8px;
    padding: 0 8px;
    /*gap: 0;*/
    height: 38px;
    width: 100%;
    position: relative;
    /*justify-content: space-between;*/
}

.input_wrapper input {
    /*flex: 1;*/
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.input_icons {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 15%;
    right: 3%;
    /*transform: translateX(-50%);*/
}

.input_icons button {
    background: none;
    border: none;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
}

.heart_filled {
    display: none;
}

.comment_like_btn.liked .heart_outline {
    display: none;
}

.comment_like_btn.liked .heart_filled {
    display: inline-block;
}

/* ---------------------------END COMMENT MODAL STYLES ------------------------- */
/*!* ============================================= End Reels ======================================================*!*/

/* MAIN LOGIN SECTION */
.login {
    /*min-height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 50px 0;
}

/* CARD */
.login_card {
    background: #fff;
    max-width: 25%;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 15px 33px 0px #0000001A;
    box-shadow: 0px 59px 59px 0px #00000017;
    box-shadow: 0px 134px 80px 0px #0000000D;
    box-shadow: 0px 238px 95px 0px #00000003;
    box-shadow: 0px 372px 104px 0px #00000000;
    box-shadow: 0px -6px 14.8px 0px #00000040;

    text-align: center;
}

.login_card h2 {
    color: #27514A;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: "Playfair Display", sans-serif;
}

.subtitle {
    font-size: 16px;
    color: #27514A;
    margin-bottom: 25px;
    font-family: "Poppins", sans-serif;
}

/* INPUT */
.input_group {
    display: flex;
    align-items: center;
    border: 1px solid #27514A;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.input_group .icon {
    width: 45px;
    border-right: 1px solid #27514A;
    text-align: center;
    font-size: 16px;
    color: #666;
}

.icon img {
    width: 25px;
}

.input_group input {
    border: none;
    outline: none;
    padding: 12px;
    width: 100%;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

/* FORGOT */
.forgot {
    text-align: right;
    margin-bottom: 15px;
}

.forgot a {
    font-size: 13px;
    color: #0d3b36;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

/* BUTTON */
.login_btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #27514A;

    font-size: 20px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.2s;
    font-family: "Poppins", sans-serif;
}

.login_btn a {
    color: #fff;
    text-decoration: none;
}

.login_btn:hover {
    background: #0b322d;
}

/* SIGNUP */
.signup_text {
    font-size: 14px;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.signup_text a {
    color: #0d3b36;
    font-weight: 600;
    text-decoration: none;
    font-family: "Playfair Display", sans-serif;
}

/* SOCIAL */
.social_login {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social_login a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.social_login .fb {
    background: #3b5998;
    text-decoration: none;
}

.social_login .x {
    background: #000;
    text-decoration: none;
}

.social_login .g {
    background: #db4437;
    text-decoration: none;
}

/* TERMS */
.terms {
    font-size: 12px;
    color: #777;
    font-family: "Poppins", sans-serif;
}

.terms a {
    color: #0d3b36;
    text-decoration: none;
}

.input_group .eye {
    padding: 0 12px;
    cursor: pointer;
    color: #777;
}

/* OTP */
.otp_box {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.otp_box input {
    width: 70px;
    height: 70px;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
    border: 1.5px solid #2c4f4a;
    outline: none;
}

.otp_box input:focus {
    border-color: #0d3b36;
}

.divider {
    height: 1px;
    background: #c7d6d3;
    margin: 30px 0;
}

.back_text a {
    font-size: 18px;
    color: #0d3b36;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

/* RESPONSIVE */
@media (max-width: 480px) {}
