Governmental organizations
/* GOVT PORTAL THEME */
:root {
–gov-deep-teal: #138275;
–gov-navy: #002c52;
–gov-bg: #f8fafb;
–gov-border: #ccd6dd;
–text-main: #2c3e50;
}
.org-section {
background-color: var(–gov-bg);
padding: 50px 0;
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
}
.bamboo-container {
max-width: 1200px;
margin: auto;
padding: 0 20px;
}
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.org-card {
background: #fff;
border: 1px solid var(–gov-border);
border-top: 5px solid var(–gov-deep-teal);
padding: 25px;
display: flex;
flex-direction: column;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: transform 0.2s;
}
.org-card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.org-tag {
font-size: 11px;
font-weight: 800;
color: #7f8c8d;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 10px;
}
.org-card h3 {
margin: 0 0 15px 0;
color: var(–gov-navy);
font-size: 1.25rem;
line-height: 1.4;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}
.info-row {
font-size: 14px;
margin-bottom: 12px;
display: flex;
flex-direction: column;
}
.info-label {
font-weight: 700;
color: #444;
text-transform: uppercase;
font-size: 10px;
margin-bottom: 3px;
}
.info-val {
color: var(–text-main);
line-height: 1.5;
margin: 0;
}
.link-text {
color: var(–gov-deep-teal);
text-decoration: none;
word-break: break-all;
font-weight: 500;
}
.link-text:hover {
text-decoration: underline;
}
/* SOCIAL MEDIA BAR */
.social-bar {
display: flex;
gap: 15px;
margin-top: 15px;
padding-top: 15px;
border-top: 1px dashed #ccc;
}
.social-icon {
color: #555;
transition: color 0.2s;
}
.social-icon:hover {
color: var(–gov-deep-teal);
}
.social-icon svg {
width: 20px;
height: 20px;
fill: currentColor;
}
/* MAIN ACTION BUTTON */
.web-btn {
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: auto;
padding: 12px;
background: #138275;
color: #fff !important;
text-decoration: none !important;
font-weight: 700;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
border-radius: 3px;
text-align: center;
}
.web-btn:hover {
background: var(–gov-deep-teal);
}
/* SLIDER ADD-ON */
.slider {
position: relative;
overflow: hidden;
border-radius: 6px;
margin-bottom: 15px;
}
.slider-track {
display: flex;
transition: transform 0.4s ease;
}
.slider img {
width: 100%;
height: 160px;
object-fit: cover;
flex-shrink: 0;
}
.slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
color: #fff;
border: none;
padding: 6px 10px;
cursor: pointer;
z-index: 2;
}
/* FULL IMAGE (NO CROP) */
.card-img-full {
width: 100%;
height: auto; /* keeps full image */
object-fit: contain; /* ensures no crop */
border-radius: 5px;
margin-bottom: 15px;
background: #f5f5f5; /* optional (nice gap if ratio diff) */
}
.slider-btn.prev { left: 5px; }
.slider-btn.next { right: 5px; }
@media (max-width: 900px) {
.grid { grid-template-columns: 1fr; }
}
Govt of India
National Bamboo Mission (NBM)
Contact
Mob: +91 11 2338 2101
Address
Ministry Of Agriculture, Shashtri Bhawan, New Delhi, 110001
Visit Official Portal
NECBDC
Northeast Cane and Bamboo Development Council
Contact
+91 87299 58122, +91 98641-39177
Email: necbdc@gmail.com
Address
GS Road, Burnihat, Guwahati 793101, Assam, India
necbdc.in
Handicrafts & Handlooms
North Eastern Handicrafts & Handlooms Development Corporation Ltd. (NEHHDC)
Contact
+91-9287502748 | dobd@nehhdc.com
Address
Head Office, Garchuk, Pamohi Road, Guwahati 781035
nehhdc.com
Finance Corporation
North Eastern Development Finance Corporation Limited (NEDFi)
Contact
Tel: +91-361-222 2200 | Email: mail@nedfi.com
Address
NEDFi House, G. S. Road, Dispur, Guwahati, 781006
nedfi.com
Research & Technology
BCDI-NECTAR
BCDI Agartala (Institute)
Tel: +91 381 241 2241
Address: Lichubagan, Agartala, Tripura
NECTAR Shillong (HQ)
Tel: 0364-2505034 (Admin) / 2506085 (Reception)
Email: nectar@nectar.org.in
Address: Survey of India Campus, Bonnie Brae Estate, Barik Point, Shillong-793001, Meghalaya
Visit nectar.org.in
Export Promotion
EPCH India
Export Promotion Council for Handicrafts (EPCH)
Contact
+91-11-26135256/57/58 | mails@epch.com
Address
EPCH House, Sector ‘C’, Vasant Kunj, New Delhi-110070
epch.in
State Mission
Meghalaya State Bamboo Mission
Contact
+91 8486760447 | msbamboomissionagency@gmail.com
Address
Shalom building, SPMU MegLIFE office. Lower Lachumiere, Shillong 793001
Visit mission website
document.querySelectorAll(“.slider”).forEach(slider => {
const track = slider.querySelector(“.slider-track”);
const slides = track.children;
let index = 0;
slider.querySelector(“.next”).onclick = () => {
index = (index + 1) % slides.length;
track.style.transform = `translateX(-${index * 100}%)`;
};
slider.querySelector(“.prev”).onclick = () => {
index = (index – 1 + slides.length) % slides.length;
track.style.transform = `translateX(-${index * 100}%)`;
};
});
We’re here to help — contact us anytime