        body {
            background-color: #f8f9fa;
        }

        .card {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
        }

        .counter {
            font-size: 2.5rem;
            font-weight: bold;
        }

        #map-placeholder {
            background: #e0e0e0;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border-radius: 10px;
        }

        canvas {
            width: 100% !important;
            height: 300px !important;
        }

        .client-logo {
            height: 100px;
            object-fit: contain;
        }

        @media (min-width: 992px) {
            .space-x {
                margin-left: 150px !important;
                margin-right: 150px !important;
            }
        }


        .logo-container {
            flex: 1 1 80px;
            text-align: center;
        }

        @media (min-width: 768px) {
            .client-logo {
                max-height: 80px;
            }
        }

        @media (min-width: 992px) {
            .client-logo {
                max-height: 100px;
            }
        }

        .custom-card {
            position: relative;
            color: white;
            border-radius: 10px;
            overflow: hidden;
            height: 180px;
        }

        .custom-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('https://edcnagaland.org/assets/images/bg.jpg') no-repeat center center;
            background-size: cover;
            filter: blur(2px);
            z-index: 0;
        }

        .custom-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background-color: rgba(0, 54, 112, 0.8);
            z-index: 1;
        }

        .custom-card-content {
            position: relative;
            z-index: 2;
            height: 100%;
            width: 100%;
        }

        .emblem-img {
            max-height: 70px;
            object-fit: contain;
        }

        .client-logo {
            max-height: 60px;
            object-fit: contain;
        }

        .emblem-text {
            font-size: 1.50rem;
            font-weight: bold;
            line-height: 1.2;
            white-space: nowrap;
            /* default: single line */
        }

        .em-text-part {
            margin-right: 5px;
        }

        .initiative-text {
            font-size: 1.1rem;
        }

        .bg-primary {
            background-color: rgba(0, 54, 112, 0.8) !important;
        }

        @media (max-width: 576px) {
            .emblem-img {
                max-height: 40px;
            }

            .client-logo {
                max-height: 30px;
            }

            .emblem-text {
                font-size: 1rem;
                white-space: normal;
                /* allow wrapping */
                display: block;
            }

            .em-text-part {
                display: block;
                margin-right: 0;
            }

            .initiative-text {
                font-size: 0.70rem;
            }

            .custom-card {
                height: 160px;
            }


        }

        /* for notice */
        .notice-container {
            height: 200px;
            /* Adjust as needed */
            overflow: hidden;
            position: relative;
        }

        .notice-list {
            list-style: none;
            margin: 0;
            padding: 0;
            animation: scroll-up 100000s linear infinite;
        }

        .notice-list li {
            padding: 10px 15px;
            border-bottom: 1px solid #f0f0f0;
            background-color: #fff;
        }

        .notice-list li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 5px 0;
}

.notice-title {
    font-size: 1rem;
    font-weight: 600;
}

.notice-date {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2px;
}


        .notice-list li a:hover {
            color: #007bff;
        }

        @keyframes scroll-up {
            0% {
                transform: translateY(0%);
            }

            100% {
                transform: translateY(-50%);
                /* Will adjust dynamically via JS if needed */
            }
        }