* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #000;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 3px solid #ccc;
    flex-wrap: wrap;
    background: #fff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 100%;
}

.logo h1 {
    font-size: 18px;
    color: #e34a00;
}

.contact {
    text-align: right;
    font-size: 14px;
}

.contact a {
    color: blue;
    font-size: 12px;
}

.container {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: #f9f9f9;
    padding: 10px;
}





.footer {
    /*background: #fff;*/
    padding: 10px;
    border-top: 1px solid #ccc;
    /*text-align: center;*/
}

.footer a {
    margin: 0 10px;
    text-decoration: none;
    color: blue;
    font-size: 14px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive footer */
@media (max-width: 500px) {
    .footer {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .contact {
        text-align: left;
        font-size: 14px;
    }
}



.sidebar h3 {
    background: #018c01;
    color: #fff;
    padding: 8px;
    font-size: 16px;
}

.sidebar .btn {
    display: block;
    padding: 8px;
    margin: 0px 0;
    color: #fff;
    text-decoration: none;
}

.sidebar .btn.green {
    background: green;
}

.w50{
    width: 50%;
    padding: 5px;
    margin: 2px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.boxmain{
    display: flex;
}

.sidebar .btn.blue {
    background: #0059FF;
}

.bluebtn {
    background: red;
    color: #fff;
    padding: 4px 14px;
    font-size: 11px;
    border-radius: 7px;
}



.sidebar .btn.purple {
    background: purple;
}

.sidebar ul {
    list-style: none;
    margin-top: 0px;
    background: #fff;
}

.sidebar ul li {
    padding: 8px;
    border-bottom: 1px solid #ccc;
}

.sidebar ul li.active {
    background: purple;
    color: #fff;
}

/* Content */
.content {
    flex: 1;
}

.marathi-text {
    font-size: 14px;
    margin-bottom: 20px;
}

.important-notices, .news {
    margin-bottom: 20px;
}

.important-notices h2, .news h2 {
    background: #0059ff;
    color: white;
    padding: 5px;
    font-size: 16px;
}

.important-notices ul, .news ul {
    list-style: none;
}

.important-notices ul li, .news ul li {
    padding: 6px;
    /*border-bottom: 1px solid #ddd;*/
}

.important-notices ul li a, .news ul li a {
    text-decoration: none;
    color: blue;
}

.new {
    color: red;
    font-weight: bold;
    font-size: 12px;
    margin-left: 5px;
}


/*NEW*/
.portal-buttons {
    margin-top: 10px;
}

.portal-btn {
    display: inline-block;
    margin: 10px 12px;
    padding: 14px 22px;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    min-width: 320px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.portal-btn .marathi {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.95;
}

/* Button colors */
.blink-blue {
    background: #1a73e8;
}

.blink-green {
    background: #0b8043;
}

/* Blinking animation (soft & professional) */
@keyframes softBlink {
    0%   { transform: scale(1); box-shadow: 0 0 0 rgba(0,0,0,0.2); }
    50%  { transform: scale(1.03); box-shadow: 0 0 18px rgba(255,255,255,0.9); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(0,0,0,0.2); }
}

.blink {
    animation: softBlink 1.5s infinite;
}

/* Hover control */
.portal-btn:hover {
    animation-play-state: paused;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
}