/********** Template CSS **********/
/* Security: Prevent text selection across the site */
/* Disable long-press and tap-highlight on Mobile */


* {
    -webkit-touch-callout: none !important; /* iOS Safari: Disable context menu */
    -webkit-user-select: none !important;  /* Safari/Chrome */
    -moz-user-select: none !important;     /* Firefox */
    -ms-user-select: none !important;      /* IE/Edge */
    user-select: none !important;           
    -webkit-tap-highlight-color: transparent;
}

/* 2. PRINT SECURITY: Hide content completely during Print/PDF export */
@media print {
    body {
        display: none !important;
    }
}

/* 3. PDF VIEWER PROTECTION (Cross-Platform) */
.pdf-wrapper {
    position: relative;
    background: #525659; /* Standard PDF background */
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    height: 650px;
    overflow: hidden;
    /* Prevents dragging/scrolling interaction on the wrapper itself */
    touch-action: none; 
}

/* The Invisible Shield: Prevents right-click and 'Open in...' popups on Mobile */
.pdf-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
}

/* Ensure the frame/canvas cannot be interacted with */
.pdf-frame, #pdfCanvasContainer canvas {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
    pointer-events: none !important; /* Disables internal PDF menu buttons */
}


/* For browsers that support it, this prevents content from appearing in screen shares */
.container-xxl {
    isolation: isolate;
}


/* Extra layer: prevent long-press and selection on mobile devices */
* {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

/* Mobile PDF Workaround: Disable interaction with the iframe to hide browser 'Open' buttons */
@media (max-width: 768px) {
    .pdf-wrapper {
        position: relative;
    }

    /* This creates an invisible shield over the iframe */
    .pdf-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        background: transparent;
    }

    /* Ensure the iframe itself is still visible but unclickable */
    .pdf-frame {
        pointer-events: none;
    }
}



:root {
    --primary: #04afaa;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }

    .logo-sneha {
        padding: 0 !important;
        margin: 0 !important;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Sidebar Styling */
.sidebar-widget {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.sidebar-header {
    background-color: #04afaa;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-pills .nav-link {
    border-radius: 0;
    color: #555;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 15px 20px;
    text-align: left;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-pills .nav-link:last-child {
    border-bottom: none;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #04afaa;
    background-color: #f8f9fa;
    border-left: 4px solid #04afaa;
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
    color: #04afaa;
}

.committee-table th {
    background-color: #f8f9fa;
    color: #333;
}

.marathi-text {
    font-family: 'Inter', sans-serif;
}

.doc-nav-container {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.nav-pills .nav-link {
    border-radius: 0;
    color: #333;
    border-bottom: 1px solid #dee2e6;
    padding: 15px 20px;
    text-align: left;
    font-weight: 500;
}

.nav-pills .nav-link:last-child {
    border-bottom: none;
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
}

/* PDF Viewer Container */
.pdf-wrapper {
    background: #e9ecef;
    /* Gray background like image */
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    height: 650px;
    /* Fixed height for the viewer */
}

.pdf-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.download-btn-container {
    margin-top: 15px;
    text-align: right;
}

.logo-sneha {
    padding: .5rem;
    margin-right: .5rem;
}

.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    z-index: 10;
}

.pop-image-link:hover {
    text-decoration: underline !important;
    color: #ffc107 !important;
    /* Golden color on hover for marquee */
}

#modalImage {
    max-height: 80vh;
    object-fit: contain;
}

.modal {
    z-index: 10000 !important;
}

.bg-transparent-1 {
    background-color: rgb(31, 31, 31) !important;
}

/* Ensure the modal background is dark enough to see the white buttons */
#imageModal .modal-content {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Gallery Navigation Buttons */
.gallery-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 2rem;
    transition: 0.3s;
    border-radius: 5px;
    z-index: 9999;
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #000;
}

/* Properly position the close button */
.btn-close-gallery {
    font-size: 1.5rem;
    opacity: 1;
    background-color: white;
    padding: 10px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 10000;
}

/* --- Gallery Navigation Styles --- */
#imageModal .modal-content {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.gallery-nav-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 2rem;
    transition: 0.3s;
    border-radius: 5px;
    z-index: 1051;
    cursor: pointer;
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-close-gallery {
    font-size: 1.2rem;
    opacity: 1;
    background-color: #fff !important;
    padding: 12px;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 1060;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* व्हिडिओला रिस्पॉन्सिव्ह बनवण्यासाठी CSS */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Default for Desktop */
.responsive-logo {
    width: 15rem;
}

/* Adjustments for Mobile */
@media (max-width: 576px) {
    .responsive-logo {
        width: 180px;
        /* Forces logo to be smaller so toggler fits */
    }

    .navbar-brand {
        margin-right: 0;
        /* Removes extra spacing */
    }

    .px-4 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Specific fix for 1024px and medium-large screens */
@media (max-width: 1200px) {
    /* Shrink the text logo so it doesn't push the menu away */





    /* Adjust padding to save horizontal space */
    .px-4 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 12px;
        margin-right: 16px;
    }
}

#pdfCanvasContainer canvas {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
    /* Crucial: stops mobile browsers from interacting with the canvas */
}

/* CSS Watermark Overlay */