/* Zoom In #1 */
		.hover01 figure img {
			-webkit-transform: scale(1);
			transform: scale(1);
			-webkit-transition: .3s ease-in-out;
			transition: .3s ease-in-out;
		}

		.hover01 figure:hover img {
			-webkit-transform: scale(1.3);
			transform: scale(1.3);
		}

		/* Zoom In #2 */
		.hover02 figure img {
			width: 300px;
			height: auto;
			-webkit-transition: .3s ease-in-out;
			transition: .3s ease-in-out;
		}

		.hover02 figure:hover img {
			width: 350px;
		}

		/* Zoom Out #1 */
		.hover03 figure img {
			-webkit-transform: scale(1.5);
			transform: scale(1.5);
			-webkit-transition: .3s ease-in-out;
			transition: .3s ease-in-out;
		}

		/* Apply Button */
		.block {
			background-color: red;
			border: none;
			color: white;
			padding: 10px;
			text-align: center;
			text-decoration: none;
			display: inline-block;
			font-size: 25px;
			margin: 4px 2px;
			cursor: pointer;
		}

		.button {
			border-radius: 10px;
		}

		.block:hover {
			background-color: #ddd;
			color: black;
		}

        .text-notices {
            color: #a30000;
        }

		.text-glow {
			text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 42px #0fa, 0 0 82px #0fa, 0 0 92px #0fa;
			color: black;
			font-size: 24px;
			background-color: #ffc100;
			height: 50px;
			width: 800px;
			text-align: center;
		}

		.text-glow1 {
			text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 42px #0fa, 0 0 82px #0fa, 0 0 92px #0fa;
			color: red;
			font-size: 20px;
			background-color: #fbb117;
			height: 50px;
			width: 800px;
			text-align: center;
		}

		.text-glow2 {
			color: red;
			font-size: 18px;
			background-color: #ebf5fb;
			height: 50px;
			width: 800px;
			text-align: justify;
		}

		body {
			color: black;
		}

		#blink_text {
			animation-name: blink;
			width: 280px;
			animation-duration: 2s;
			animation-timing-function: ease-in;
			animation-iteration-count: Infinite;
		}

		@keyframes blink {
			0% {
				color: red;
			}

			50% {
				color: white;
			}

			100% {
				color: red;
			}
		}

		.marquee-container {
			width: 100%;
			overflow: hidden;
			white-space: nowrap;
			background: #f9f9f9;
			border: 1px solid #ccc;
		}

		.marquee-content {
			display: inline-block;
			padding-left: 100%;
			animation: scrollLeft 30s linear infinite;
			/* Slower speed */
		}

		@keyframes scrollLeft {
			0% {
				transform: translateX(0);
			}

			100% {
				transform: translateX(-100%);
			}
		}

		.marquee-content a {
			display: inline-block;
			margin-right: 20px;
			text-decoration: none;
			color: blue;
			font-size: 20px;
		}


		/*Time Line*/

		.timeline,
		.timeline-horizontal {
			list-style: none;
			padding: 10px;
			position: relative;
		}

		.timeline:before {
			top: 40px;
			bottom: 0;
			position: absolute;
			content: " ";
			width: 3px;
			background-color: #eeeeee;
			left: 50%;
			margin-left: -1.5px;
		}

		.timeline .timeline-item {
			margin-bottom: 20px;
			position: relative;
		}

		.timeline .timeline-item:before,
		.timeline .timeline-item:after {
			content: "";
			display: table;
		}

		.timeline .timeline-item:after {
			clear: both;
		}

		.timeline .timeline-item .timeline-badge {
			color: #fff;
			width: 40px;
			height: 40px;
			line-height: 52px;
			font-size: 12px;
			text-align: center;
			position: absolute;
			top: 18px;
			left: 50%;
			margin-left: -25px;
			background-color: #7c7c7c;
			border: 3px solid #ffffff;
			z-index: 100;
			border-top-right-radius: 50%;
			border-top-left-radius: 50%;
			border-bottom-right-radius: 50%;
			border-bottom-left-radius: 50%;
		}

		.timeline .timeline-item .timeline-badge i,
		.timeline .timeline-item .timeline-badge .fa,
		.timeline .timeline-item .timeline-badge .glyphicon {
			top: 2px;
			left: 0px;
		}

		.timeline .timeline-item .timeline-badge.primary {
			background-color: #b4b6af;
		}

		.timeline .timeline-item .timeline-badge.info {
			background-color: #5bc0de;
		}

		.timeline .timeline-item .timeline-badge.success {
			background-color: #59ba1f;
		}

		.timeline .timeline-item .timeline-badge.warning {
			background-color: #b4b6af;
		}

		.timeline .timeline-item .timeline-badge.danger {
			background-color: #fc0;
		}

		.timeline .timeline-item .timeline-panel {
			position: relative;
			width: 46%;
			float: left;
			right: 16px;
			border: 1px solid #c0c0c0;
			background: #ffffff;
			border-radius: 2px;
			padding: 10px;
			-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
			box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
		}

		.timeline .timeline-item .timeline-panel:before {
			position: absolute;
			top: 26px;
			right: -16px;
			display: inline-block;
			border-top: 16px solid transparent;
			border-left: 16px solid #c0c0c0;
			border-right: 0 solid #c0c0c0;
			border-bottom: 16px solid transparent;
			content: " ";
		}

		.timeline .timeline-item .timeline-panel .timeline-title {
			margin-top: 0;
			color: inherit;
		}

		.timeline .timeline-item .timeline-panel .timeline-body>p,
		.timeline .timeline-item .timeline-panel .timeline-body>ul {
			margin-bottom: 0;
		}

		.timeline .timeline-item .timeline-panel .timeline-body>p+p {
			margin-top: 5px;
		}

		.timeline .timeline-item:last-child:nth-child(even) {
			float: right;
		}

		.timeline .timeline-item:nth-child(even) .timeline-panel {
			float: right;
			left: 16px;
		}

		.timeline .timeline-item:nth-child(even) .timeline-panel:before {
			border-left-width: 0;
			border-right-width: 14px;
			left: -14px;
			right: auto;
		}

		.timeline-horizontal {
			list-style: none;
			position: relative;
			padding: 20px 0px 20px 0px;
			display: inline-block;
		}

		.timeline-horizontal:before {
			height: 3px;
			top: auto;
			bottom: 26px;
			left: 56px;
			right: 0;
			width: 100%;
			margin-bottom: 20px;
		}

		.timeline-horizontal .timeline-item {
			display: table-cell;
			height: 240px;
			width: 20%;
			min-width: 195px;
			float: none !important;
			padding-left: 0px;
			padding-right: 20px;
			margin: 0 auto;
			vertical-align: bottom;
		}

		.timeline-horizontal .timeline-item .timeline-panel {
			top: auto;
			bottom: 64px;
			display: inline-block;
			float: none !important;
			left: 0 !important;
			right: 0 !important;
			width: 100%;
			margin-bottom: 5px;
		}

		.timeline-horizontal .timeline-item .timeline-panel:before {
			top: auto;
			bottom: -16px;
			left: 28px !important;
			right: auto;
			border-right: 16px solid transparent !important;
			border-top: 16px solid #c0c0c0 !important;
			border-bottom: 0 solid #c0c0c0 !important;
			border-left: 16px solid transparent !important;
		}

		.timeline-horizontal .timeline-item:before,
		.timeline-horizontal .timeline-item:after {
			display: none;
		}

		.timeline-horizontal .timeline-item .timeline-badge {
			top: auto;
			bottom: 0px;
			left: 43px;
		}

		.video-fallback {
			position: relative;
			display: inline-block;
			max-width: 500px;
		}

		.video-fallback img {
			width: 100%;
			border-radius: 8px;
		}

		.video-fallback .play-btn {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			font-size: 48px;
			color: white;
			background: rgba(0, 0, 0, 0.6);
			border-radius: 50%;
			padding: 10px 16px;
		}

		.video-grid {
			display: flex;
			justify-content: center;
			gap: 40px;
			flex-wrap: wrap;
			margin-top: 20px;
			margin-bottom: 20px;
		}

		.video-item {
			max-width: 500px;
		}

		.video-links {
			margin-top: 12px;
		}

		.video-links .btn {
			margin: 4px;
		}



		.badge-new {
			display: inline-block;
			margin-left: 6px;
			padding: 2px 8px;

			font-size: 11px;
			font-weight: 600;
			letter-spacing: 0.3px;

			color: #ffffff;
			background: linear-gradient(135deg, #ff9800, #ff5722);

			border-radius: 12px;
			vertical-align: middle;

			animation: pulse 1.8s infinite;
		}

		@keyframes pulse {
			0% {
				box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.6);
			}

			70% {
				box-shadow: 0 0 0 8px rgba(255, 152, 0, 0);
			}

			100% {
				box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
			}
		}

		/*Time Line*/