    /** {*/
    /*    font-family: 'Inter', sans-serif;*/
    /*}*/
    
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    
        body {
            font-family: 'Poppins', sans-serif;
            background: #f4f7f6;
            color: #1c2b26;
            
        }
        /* Custom navbar background */
        .navbar-custom {
            background: rgba(15, 81, 50, 0.98);
            backdrop-filter: blur(8px);
            padding: 12px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            
            
        }
        
		/* Custom navbar with gradient background */
        .navbar-custom {
            background: linear-gradient(135deg, #0f5132 0%, #1e7e54 100%);
            backdrop-filter: blur(8px);
            padding: 12px 40px;
            box-shadow: 0 4px 20px rgba(0, 40, 20, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s ease;
        }        
        
    
        /* All navbar text white */
        .navbar-custom .navbar-brand,
        .navbar-custom .nav-link,
        .navbar-custom .navbar-toggler-icon {
            color: #fff !important;
        }

		
		.navbar-custom .nav-link{
			color:#ffffff !important;
			font-weight:500;
			letter-spacing:.3px;
			padding:8px 14px;
			border-radius:30px;
			transition:all .25s ease;
		}
		
		.navbar-custom .nav-link:hover{
			background:rgba(255,255,255,0.12);
			color:#e9fff3 !important;
			transform:translateY(-1px);
		}


		.navbar-custom .nav-link.active{
			background:#198754;
			color:white !important;
			box-shadow:0 4px 10px rgba(0,0,0,0.2);
		}

		.navbar-custom .dropdown-menu{
			background:linear-gradient(160deg,#0f5132,#146c43);
			border:none;
			border-radius:14px;
			padding:10px;
			box-shadow:0 15px 35px rgba(0,0,0,0.35);
		}

		.navbar-custom .dropdown-item{
			color:#fff;
			padding:10px 18px;
			border-radius:10px;
			transition:.25s;
		}

		.navbar-custom .dropdown-item:hover{
			background:rgba(255,255,255,0.15);
			color:#ffffff;
		}
		
		.navbar-custom {
            position: relative;
            z-index: 9999;
        }
		
    
        
    /* Brand group */
    .brand-group {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
    }
    .brand-group img {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.2);
        transition: transform 0.2s;
    }
    .brand-group img:hover {
        transform: scale(1.03);
    }
    .brand-text {
        line-height: 1.2;
    }
    .brand-main{
        font-size:26px;
        font-weight:700;
        color:#ffffff;
        letter-spacing:1px;
        text-shadow:0 3px 6px rgba(0,0,0,0.4);
    }
    .brand-small{
        font-size:13px;
        color:#cfeee1;
        display: block;
    }
        
        


    /* Layout */
    .container-custom {
        display: flex;
        max-width: 100%;
        margin: 0 auto;
        background: #f4f7f6;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .sidebar {
        width: 300px;
        background: #ffffff;
        padding: 30px;
        border-right: 1px solid #e0e0e0;
    }
    .sidebar h4 {
        margin-bottom: 10px;
        color: #0f5132;
        font-weight: 700;
    }
    .info-box {
        margin-top: 20px;
        padding: 15px;
        background: #f8f9fa;
        border-left: 4px solid #198754;
        border-radius: 6px;
        font-size: 14px;
    }
        
    /* ===== COMPACT EXECUTIVE MEMBERS SECTION ===== */
    .executive-section {
        margin-top: 40px;
    }
    .executive-section h3 {
        margin-bottom: 20px;
        color: #0f5132;
        font-weight: 700;
        border-left: 6px solid #198754;
        padding-left: 15px;
        font-size: 1.5rem;
    }
    .executive-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
    .member-card {
        background: #ffffff;
        padding: 15px 10px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,40,20,0.04);
        text-align: center;
        transition: all 0.2s;
        border: 1px solid #e6f0ea;
    }
    .member-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0,60,30,0.08);
        border-color: #198754;
    }
    .member-card img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 8px;
        border: 2px solid #198754;
        background: #f0f7f3;
    }
    .member-card h4 {
        color: #198754;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .member-card p {
        color: #2f5e4a;
        font-size: 11px;
        font-weight: 600;
        background: #eaf6f0;
        display: inline-block;
        padding: 3px 10px;
        border-radius: 30px;
        margin-bottom: 0;
        letter-spacing: 0.3px;
    }
    /* optional extra polish: role in uppercase */
    .member-card p {
        text-transform: uppercase;
    }
    
    .extra-section {
        margin-top: 50px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .extra-box {
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    .extra-box h4 {
        margin-bottom: 10px;
        color: #0f5132;
    }
	
	
	
    
    .content {
        flex: 1;
        padding: 7px 7px;
    }
    .content p {
        margin-top: 12px;
        line-height: 1.7;
        font-size: 15px;
    }
    
    .hero {
        height: 350px;
        background: url('../images/background.jpeg') center center/cover no-repeat;
        background-size: cover;
        border-radius: 8px;
        padding: 20px;
        color: white;
        text-shadow: 0 2px 6px rgba(0,0,0,0.5);
        font-size: 28px;
        font-weight: 700;
        display: flex;
        align-items: flex-end;
    }
    
    
    .hero small {
        font-size: 16px;
        font-weight: 400;
        display: block;
    }
    
    .khasi-section {
        background: #f9fefb;
        padding: 30px;
        border-radius: 16px;
        border: 1px solid #d0e6da;
        margin: 30px 0;
        box-shadow: 0 8px 20px rgba(0,40,20,0.04);
    }
    /*.khasi-title {*/
    /*    font-size: 28px;*/
    /*    font-weight: 700;*/
    /*    color: #0f5132;*/
    /*    border-bottom: 3px solid #198754;*/
    /*    padding-bottom: 10px;*/
    /*    margin-bottom: 25px;*/
    /*    display: flex;*/
    /*    align-items: center;*/
    /*    gap: 10px;*/
    /*}*/
    /*.khasi-title i {*/
    /*    color: #198754;*/
    /*    font-size: 32px;*/
    /*}*/
    /*.khasi-text {*/
    /*    font-size: 17px;*/
    /*    line-height: 1.8;*/
    /*    color: #1e3a2f;*/
    /*}*/
    
    /*.khasi-text p {*/
    /*    text-align: justify;*/
    /*    hyphens: auto;*/
    /*}*/
    
    
    .khasi-title {
            font-size: 2.3rem;
            font-weight: 600;
            color: #1d4635; /* deep forest green */
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 3px solid #a3d8c9;
            padding-bottom: 15px;
            letter-spacing: -0.5px;
        }

    /*.khasi-title i {*/
    /*    font-size: 2.5rem;*/
    /*    color: #2b7a62;*/
    /*    background: #e0f2e9;*/
    /*    padding: 12px;*/
    /*    border-radius: 50%;*/
    /*    box-shadow: 0 4px 8px rgba(0, 60, 30, 0.1);*/
    /*    transition: all 0.3s;*/
    /*}*/
    
    .khasi-title i {
        color: #198754;
        font-size: 32px;
    }

    /*.khasi-title i:hover {*/
    /*    background: #2b7a62;*/
    /*    color: white;*/
    /*    transform: rotate(10deg);*/
    /*}*/

    .khasi-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #2d3f38;
        margin-bottom: 1.5rem;
        text-align: justify;
        font-weight: 400;
        text-justify: inter-word;
        /*hyphens: auto;*/
    }

    .khasi-text p:last-child {
        margin-bottom: 0;
    }

    .khasi-text b {
        color: #1d6b4e; /* stronger green for bold text */
        font-weight: 600;
        background: linear-gradient(145deg, #f0fcf7, #ffffff);
        padding: 2px 6px;
        border-radius: 8px;
        display: inline-block;
    }
        
    
    /** Dong Section ***/
    
    .dong-list {
        background: #eaf4ef;
        padding: 20px 25px;
        border-radius: 14px;
        margin: 20px 0 10px;
        font-weight: 500;
        columns: 2;
        column-gap: 30px;
    }
    .dong-list span {
        display: block;
        margin-bottom: 8px;
        color: #0f5132;
    }
    .dong-list i {
        margin-right: 8px;
        color: #198754;
    }
    .footer {
        background: #0f5132;
        color: #fff;
        text-align: center;
        padding: 20px;
        font-size: 13px;
    }
    /* Modal styling */
	
	 /* PDF modal */
    .pdf-modal-iframe {
        width: 100%;
        height: 70vh;
        border: none;
        border-radius: 8px;
    }
    
    
    
    /** About Us Section ***/
        /*.about-container {*/
        /*    max-width: 900px;*/
        /*    width: 100%;*/
        /*    margin: 0 auto;*/
        /*}*/
        
        .about-container {
            width: 100%;          /* Full width */
            max-width: none;       /* Remove any max-width limit */
            margin: 0 auto;
            padding: 0;            /* Remove padding if any */
            position: relative;
        }

        .about-section {
            background: white;
            border-radius: 30px;
            padding: 40px 45px;
            box-shadow: 0 25px 45px -12px rgba(0, 50, 30, 0.25);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(120, 170, 140, 0.2);
            backdrop-filter: blur(2px);
        }

        .about-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 35px 55px -15px rgba(30, 100, 70, 0.3);
        }

        .about-title {
            font-size: 2.3rem;
            font-weight: 600;
            color: #1d4635; /* deep forest green */
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 3px solid #a3d8c9;
            padding-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .about-title i {
            font-size: 2.5rem;
            color: #2b7a62; /* fresh green */
            background: #e0f2e9;
            padding: 12px;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0, 60, 30, 0.1);
            transition: all 0.3s;
        }

        .about-title i:hover {
            background: #2b7a62;
            color: white;
            transform: rotate(10deg);
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #2d3f38;
            margin-bottom: 1.5rem;
            text-align: justify;
            font-weight: 400;
            text-justify: inter-word;
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        .about-text b {
            color: #1d6b4e; /* stronger green for bold text */
            font-weight: 600;
            background: linear-gradient(145deg, #f0fcf7, #ffffff);
            padding: 2px 6px;
            border-radius: 8px;
            display: inline-block;
        }

        /* Optional: add a subtle accent to the container background */
        .about-container {
            position: relative;
        }

        .about-container::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(150, 210, 180, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }

        .about-container::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(120, 190, 160, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }

        /* responsive adjustments */
        @media (max-width: 600px) {
            .about-section {
                padding: 30px 25px;
            }
            .about-title {
                font-size: 1.9rem;
            }
            .about-title i {
                font-size: 2rem;
                padding: 10px;
            }
            .about-text p {
                font-size: 1rem;
                line-height: 1.7;
            }
        }
        
    
    
    
    /* SECTION */
    
    .gallery-section{
    padding:50px 20px;
    max-width:1100px;
    margin:auto;
    }
    
    /* MAIN TITLE */
    
    .main-title{
    text-align:center;
    font-size:34px;
    margin-bottom:40px;
    color:#0f5132;
    }
    
    /* CATEGORY TITLE */
    
    .category-title{
    font-size:24px;
    margin:40px 0 20px 0;
    color:#333;
    border-left:5px solid #0f5132;
    padding-left:10px;
    }
    
    /* GRID */
    
    .gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    }
    
    /* IMAGE CARD */
    
    .gallery-item{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 6px 15px rgba(0,0,0,0.15);
    }
    
    .gallery-item img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:0.5s;
    }
    
    /* HOVER EFFECT */
    
    /*.gallery-item:hover img{*/
    /*transform:scale(1.15);*/
    /*}*/
    
    
    .gallery-item {
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .gallery-item img {
        width: 100%;
        transition: all 0.4s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.15) rotate(1deg);
    }

    
    
    
    .modal {
        /*position: relative;*/
        z-index: 9999;
    }
	
	
    .modal-logo-img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .logo-meaning {
        background: #f0f9f4;
        padding: 20px;
        border-radius: 16px;
        border-left: 5px solid #198754;
    }

    /* responsive */
    @media (max-width: 1000px) {
        .navbar-custom {
            padding: 12px 20px;
        }
        .container-custom {
            flex-direction: column;
        }
        .sidebar {
            width: 100%;
            border-right: none;
            border-top: 1px solid #e0e0e0;
        }
        .dong-list {
            columns: 1;
        }
    }
    @media (max-width: 768px) {
        .brand-group img {
            width: 52px;
            height: 52px;
        }
        .brand-main {
            font-size: 22px;
        }
        .brand-small {
            font-size: 12px;
        }
        .content {
            padding: 30px 20px;
        }
        .hero {
            height: 200px;
            font-size: 22px;
        }
        .executive-grid {
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
        }
    }