/* user define css */

  /* INTERACTIVE MAP & CONTENT PANEL STYLES */
        .fa-classic,
        .fa-regular,
        .fa-solid,
        .far,
        .fas {
            font-family: "Font Awesome 6 Free" !important;
        }

        :root {
            --map-orange: #e16802;
            --map-dark: #000000;
            --map-hover: #b35201;
            --transition-speed: 0.3s;
        }

        /* 1. SVG MAP STYLING */
        svg#DistrictMap {
            width: 100%;
            height: auto;
            overflow: visible;
            position: relative;
            z-index: 20;
            pointer-events: auto !important;
        }

        .map-selected {
            stroke: #ffffff;
            stroke-width: 1.5px;
            cursor: pointer !important;
            transition: all var(--transition-speed) ease;
            pointer-events: all !important;
            cursor: pointer !important;
            z-index: 9999 !important;
        }

        .map-selected:hover {
            fill: var(--map-hover);
            transform: scale(1.01);
            /* Subtle "pop" effect */
        }

        /* Map Active State (When clicked) */
        .map-selected.active {
            fill: var(--map-dark) !important;
            filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.4));
            stroke: var(--map-orange);
            stroke-width: 2.5px;
        }

        /* 2. INFO PANEL CONTAINER */
        .info-panel {
            min-height: 450px;
            background: #ffffff;
            padding: 35px;
            border-left: 6px solid var(--map-orange);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 10;
            border-radius: 4px;
        }

        /* 3. TAB CONTENT LOGIC (THE FIX) */
        .tab-content-map {
            position: relative;
            width: 100%;
        }

        /* Hide all panes by default */
        .tab-pane {
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        /* FORCE ACTIVE STATE: Overrides Bootstrap's hidden classes */
        .tab-pane.active.show {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0);
            animation: fadeInContent 0.5s ease forwards;
        }

        /* 4. CONTENT TYPOGRAPHY & BADGES */
        .district-id-badge {
            background: var(--map-dark);
            color: #ffffff !important;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 20px;
        }

        .tab-pane h2 {
            color: #111111 !important;
            font-weight: 800;
            margin-bottom: 15px;
            font-size: 2rem;
        }

        .tab-pane p {
            color: #000000 !important;
            font-weight: 500;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        #DistrictMap {
            position: relative;
            z-index: 999 !important;
            pointer-events: auto !important;
        }

        /* 5. ANIMATIONS */
        @keyframes fadeInContent {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 6. RESPONSIVE ADJUSTMENTS */
        @media (max-width: 768px) {
            .info-panel {
                margin-top: 30px;
                border-left: none;
                border-top: 6px solid var(--map-orange);
                min-height: auto;
                padding: 20px;
            }
        }
		
		
		
.don_popup_wrapper{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(4px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.don_popup_wrapper.don_active{
    opacity:1;
    visibility:visible;
}

.don_popup_box{
    width:90%;
    max-width:1100px;
    background:#b9b4b4;
    border-radius:20px;
    padding:30px;
    position:relative;
    transform:scale(.8) translateY(40px);
    transition:.4s;
    box-shadow:inset rgb(255 255 255 / 92%) 1px 1px 15px;
    border:1px solid #fff;
}

.don_popup_wrapper.don_active .don_popup_box{
    transform:scale(1) translateY(0);
}

.don_close_btn{
    position:absolute;
    top:15px;
    right:20px;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    font-size:20px;
    cursor:pointer;
    color:#fff;
    transition:.3s;
}

.don_close_btn:hover{
    color:#000;
    border:1px solid #000;
    border-radius:50%;
    transform:rotate(90deg);
}

.don_main_container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
}

.don_image_box{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.don_image_box img{
    width:100%;
    display:block;
}

.don_audio_btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    border: none;
    background: #204667;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    width: 150px;
}

.don_audio_btn:hover{
    opacity:.9;
}

.don_content_box h1{
    font-size:32px;
    color:#000;
    margin-bottom:15px;
    font-weight:700;
}

.don_quote_text{
    font-style:italic;
    color:#fff;
    margin-bottom:10px;
}

.don_author_text{
    color:#fff;
    margin-bottom:15px;
}

.don_description_text{
    color:#000;
    font-size:16px;
    line-height:1.7;
    margin-bottom:20px;
    font-weight:500;
}

.don_action_btn{
    display:inline-block;
    padding:12px 25px;
    background:#22c55e;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.don_action_btn:hover{
    background:#16a34a;
    box-shadow:0 0 15px #22c55e;
}

@media(max-width:900px){
    .don_main_container{
        grid-template-columns:1fr;
    }
    .don_content_box h1{
        font-size:26px;
    }
}

.owl-carousel {
    display: block !important;
    width: 100%;
    z-index: 1;
}



/* Force Font Awesome arrow show */
        .nevent_gallery .hom i.fa-solid,
        .nevent_gallery .hom i.fa-arrow-right-long {
            font-family: "Font Awesome 6 Free" !important;
            font-weight: 900 !important;
            font-style: normal !important;
            display: inline-block !important;
            visibility: visible !important;
            opacity: 1 !important;
            font-size: 16px !important;
            line-height: 1 !important;
            color: #fff !important;
            transform: translateY(1px);
        }

img.new_img {
    rotate: 180deg;
}
.photos-btn button img{
	width: 20px;
}