		/* News Modal Styles */
		.news-modal {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 9999;
			background: rgba(0, 0, 0, 0.8);
			backdrop-filter: blur(5px);
		}

		.news-modal-overlay {
			display: flex;
			justify-content: center;
			align-items: center;
			min-height: 100vh;
			padding: 20px;
		}

		/* Enhanced News Modal Styles */
		.news-modal-content {
			background: #fff;
			border-radius: 20px;
			max-width: 900px;
			width: 100%;
			max-height: 95vh;
			overflow-y: auto;
			box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
			animation: modalSlideIn 0.4s ease-out;
			border: 3px solid #2c5aa0;
		}

		@keyframes modalSlideIn {
			from {
				opacity: 0;
				transform: translateY(-80px) scale(0.8);
			}
			to {
				opacity: 1;
				transform: translateY(0) scale(1);
			}
		}

		.news-modal-header {
			background: linear-gradient(135deg, #2c5aa0, #1e3a5f, #0f2a4a);
			color: white;
			padding: 30px 35px;
			border-radius: 17px 17px 0 0;
			position: relative;
			box-shadow: 0 5px 20px rgba(44, 90, 160, 0.3);
		}

		.news-modal-header h2 {
			margin: 0;
			font-size: 26px;
			font-weight: 700;
			line-height: 1.3;
			color: white;
			text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
		}

		.news-modal-close {
			position: absolute;
			top: 25px;
			right: 30px;
			font-size: 35px;
			cursor: pointer;
			color: white;
			transition: all 0.3s ease;
			background: rgba(255, 255, 255, 0.2);
			width: 45px;
			height: 45px;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.news-modal-close:hover {
			color: #ffd700;
			background: rgba(255, 215, 0, 0.2);
			transform: rotate(90deg);
		}

		.news-modal-body {
			padding: 35px;
			background: linear-gradient(135deg, #f8f9fa, #ffffff);
		}

		.news-date {
			color: #2c5aa0;
			font-weight: 700;
			font-size: 16px;
			margin-bottom: 25px;
			text-transform: uppercase;
			letter-spacing: 2px;
			background: linear-gradient(135deg, #2c5aa0, #1e3a5f);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
		}

		.news-content {
			line-height: 1.8;
			color: #333;
		}

		.news-content p {
			margin-bottom: 25px;
			font-size: 17px;
			text-align: justify;
		}

		.news-content p:first-of-type {
			font-size: 19px;
			font-weight: 600;
			color: #2c5aa0;
			border-left: 4px solid #2c5aa0;
			padding-left: 20px;
			background: rgba(44, 90, 160, 0.05);
			padding: 20px;
			border-radius: 0 10px 10px 0;
		}

		.news-list {
			margin: 25px 0;
			padding-left: 0;
			list-style: none;
			background: #fff;
			border-radius: 15px;
			padding: 20px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		}

		.news-list li {
			padding: 12px 0;
			padding-left: 40px;
			position: relative;
			border-bottom: 1px solid #f0f0f0;
			font-size: 16px;
			font-weight: 500;
			transition: all 0.3s ease;
		}

		.news-list li:hover {
			background: rgba(44, 90, 160, 0.05);
			padding-left: 45px;
		}

		.news-list li:before {
			content: "✓";
			position: absolute;
			left: 0;
			top: 12px;
			color: #2c5aa0;
			font-weight: bold;
			font-size: 20px;
			background: linear-gradient(135deg, #2c5aa0, #1e3a5f);
			color: white;
			width: 25px;
			height: 25px;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.news-list li:last-child {
			border-bottom: none;
		}

		.news-modal-footer {
			padding: 25px 35px;
			border-top: 2px solid #f0f0f0;
			text-align: center;
			background: linear-gradient(135deg, #f8f9fa, #e9ecef);
			border-radius: 0 0 17px 17px;
		}

		.news-modal-close-btn {
			background: linear-gradient(135deg, #2c5aa0, #1e3a5f);
			color: white;
			border: none;
			padding: 15px 40px;
			border-radius: 30px;
			font-weight: 700;
			cursor: pointer;
			transition: all 0.3s ease;
			text-transform: uppercase;
			letter-spacing: 2px;
			font-size: 16px;
			box-shadow: 0 5px 20px rgba(44, 90, 160, 0.3);
		}

		.news-modal-close-btn:hover {
			background: linear-gradient(135deg, #1e3a5f, #2c5aa0);
			transform: translateY(-3px);
			box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
		}

		/* News Badge Enhancement */
		.news-date-badge {
			position: absolute;
			top: 15px;
			right: 15px;
			background: linear-gradient(135deg, #2c5aa0, #1e3a5f);
			color: white;
			padding: 8px 15px;
			border-radius: 20px;
			font-size: 13px;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 1px;
			box-shadow: 0 3px 10px rgba(44, 90, 160, 0.4);
		}

		/* Modal Image Styling */
		.modal-image-container {
			margin: 20px 0 30px 0;
			text-align: center;
			border-radius: 15px;
			overflow: hidden;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
		}

		.modal-image {
			width: 100%;
			height: 300px;
			object-fit: cover;
			transition: transform 0.3s ease;
		}

		.modal-image:hover {
			transform: scale(1.02);
		}

		.news-popup-trigger {
			color: #2c5aa0;
			transition: color 0.3s ease;
			text-decoration: none;
		}

		.news-popup-trigger:hover {
			color: #1e3a5f;
			text-decoration: none;
		}

		/* Enhanced News Card Styles */
		.blog-item {
			background: #fff;
			border-radius: 15px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
			transition: all 0.3s ease;
			overflow: hidden;
			border: 1px solid #f0f0f0;
		}

		.blog-item:hover {
			transform: translateY(-5px);
			box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
		}

		.post-featured-image {
			position: relative;
			overflow: hidden;
		}

		.post-featured-image img {
			transition: transform 0.3s ease;
			width: 100%;
			height: 250px;
			object-fit: cover;
		}

		.post-featured-image:hover img {
			transform: scale(1.05);
		}

		.post-item-body {
			padding: 25px;
		}

		.post-item-content h3 {
			font-size: 20px;
			font-weight: 600;
			margin-bottom: 15px;
			line-height: 1.4;
		}

		.post-item-content p {
			color: #666;
			font-size: 14px;
			margin-bottom: 20px;
			line-height: 1.6;
		}

		.redmore-btn {
			background: linear-gradient(135deg, #51909e, #508d9b);
			color: white;
			padding: 10px 20px;
			border-radius: 25px;
			text-decoration: none;
			font-weight: 600;
			font-size: 14px;
			text-transform: uppercase;
			letter-spacing: 1px;
			transition: all 0.3s ease;
			display: inline-block;
		}

		.redmore-btn:hover {
			background: linear-gradient(135deg, #508d9b, #51909e);
			transform: translateY(-2px);
			box-shadow: 0 5px 15px rgba(81, 144, 158, 0.3);
			color: white;
			text-decoration: none;
		}

		/* News Date Badge */
		.news-date-badge {
			position: absolute;
			top: 15px;
			right: 15px;
			background: rgba(44, 90, 160, 0.9);
			color: white;
			padding: 5px 12px;
			border-radius: 15px;
			font-size: 12px;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 1px;
		}

		/* Prevent body scroll when modal is open */
		body.modal-open {
			overflow: hidden;
			height: 100%;
		}

		/* Responsive Design */
		@media (max-width: 768px) {
			.news-modal-content {
				margin: 10px;
				max-height: 95vh;
			}

			.news-modal-header {
				padding: 20px;
			}

			.news-modal-header h2 {
				font-size: 20px;
			}

			.news-modal-body {
				padding: 20px;
			}

			.news-modal-footer {
				padding: 15px 20px;
			}
		}

        .news-modal-content {
			/* Hide scrollbar for Chrome, Safari and Opera */
			scrollbar-width: none; /* Firefox */
			-ms-overflow-style: none; /* Internet Explorer 10+ */
		}

		.news-modal-content::-webkit-scrollbar {
			display: none; /* Chrome, Safari and Opera */
		}