.elementor-1219 .elementor-element.elementor-element-2fca48d{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-4b9cfd5 *//* Container Grid Setup */
.nabdh-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 columns */
    gap: 30px;
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
}

/* Responsive: 2 columns for tablets, 1 for mobile */
@media (max-width: 1024px) { .nabdh-grid-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .nabdh-grid-container { grid-template-columns: 1fr; } }

/* The Card Design */
.nabdh-card {
    background: #111111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.nabdh-card:hover {
    transform: translateY(-12px);
    border-color: #ffd700; /* Gold glow on hover */
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Banner Area */
.nabdh-thumb {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.nabdh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, #111111 100%);
}

.nabdh-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffd700;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

/* Card Content */
.nabdh-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.nabdh-meta {
    display: flex;
    gap: 15px;
    color: #ffd700;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.nabdh-title {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.nabdh-loc {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Footer Section */
.nabdh-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.nabdh-vols {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v-num {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.v-label {
    color: #666;
    font-size: 12px;
}

.nabdh-action-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #444;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.nabdh-action-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.nabdh-detail-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

/* Hero Style */
.detail-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 80px 50px;
    border-bottom: 1px solid #333;
    text-align: center;
}

.org-name {
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
}

.detail-hero h1 {
    font-size: 48px;
    margin: 20px 0;
    font-weight: 800;
    color: #fff;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #888;
    font-size: 16px;
}

/* Criteria Grid */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #222; /* Creates thin border effect */
    margin: -30px 50px 40px 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.info-card {
    background: #141414;
    padding: 25px;
    text-align: center;
}

.info-card h4 {
    font-size: 12px;
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-card p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Content Sections */
.detail-section {
    padding: 0 50px 40px 50px;
}

.detail-section h3 {
    color: #fff;
    border-left: 4px solid #ffd700;
    padding-left: 15px;
    margin-bottom: 25px;
}

.detail-section p {
    color: #bbb;
    line-height: 1.8;
}

/* Map Styling */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
}

/* Footer Action */
.action-footer {
    padding: 40px 50px;
    text-align: center;
    background: #111;
}

.apply-btn {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.apply-btn:hover {
    transform: scale(1.05);
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .detail-grid { grid-template-columns: repeat(2, 1fr); margin: 20px; }
    .detail-hero h1 { font-size: 32px; }
    .hero-meta { flex-direction: column; gap: 10px; }
}/* End custom CSS */