/* ===============================
			CONTENT STYLING (LIGHT MODE)
			=============================== */
			
			.service-content {
			font-size: 15px;
			line-height: 1.8;
			color: #374151;
			margin-top: 25px;
			}
			
			/* RESET INLINE COLORS FROM DB */
			.service-content [style] {
			color: inherit !important;
			}
			
			/* HEADINGS */
			.service-content h1,
			.service-content h2,
			.service-content h3,
			.service-content h4,
			.service-content h5,
			.service-content h6 {
			font-weight: 600;
			color: #111827;
			margin-top: 25px;
			margin-bottom: 12px;
			line-height: 1.4;
			}
			
			.service-content h1 { font-size: 28px; }
			.service-content h2 { font-size: 24px; }
			.service-content h3 { font-size: 20px; }
			.service-content h4 { font-size: 18px; }
			.service-content h5 { font-size: 16px; }
			.service-content h6 { font-size: 14px; }
			
			/* PARAGRAPH */
			.service-content p {
			margin-bottom: 15px;
			color: #4b5563;
			}
			
			/* LINKS */
			.service-content a {
			color: #4f46e5;
			text-decoration: none;
			font-weight: 500;
			}
			.service-content a:hover {
			text-decoration: underline;
			}
			
			/* LISTS */
			.service-content ul,
			.service-content ol {
			margin: 15px 0 15px 20px;
			}
			.service-content ul li {
			list-style: disc;
			margin-bottom: 8px;
			}
			.service-content ol li {
			list-style: decimal;
			margin-bottom: 8px;
			}
			
			/* BLOCKQUOTE */
			.service-content blockquote {
			border-left: 4px solid #4f46e5;
			background: #f9fafb;
			padding: 15px 20px;
			margin: 20px 0;
			font-style: italic;
			color: #ffffff;
			border-radius: 6px;
			}
			
			/* TABLE */
			.service-content table {
			width: 100%;
			border-collapse: collapse;
			margin: 20px 0;
			border-radius: 8px;
			overflow: hidden;
			}
			.service-content th {
			background: #4f46e5;
			color: #fff;
			padding: 12px;
			text-align: left;
			font-weight: 600;
			}
			.service-content td {
			padding: 12px;
			border-bottom: 1px solid #e5e7eb;
			}
			.service-content tr:nth-child(even) {
			background: #f9fafb;
			}
			
			/* IMAGE */
			.service-content img {
			max-width: 100%;
			border-radius: 8px;
			margin: 15px 0;
			}
			
			/* HR */
			.service-content hr {
			border: none;
			border-top: 1px solid #e5e7eb;
			margin: 25px 0;
			}
			
			/* CODE */
			.service-content code {
			background: #f3f4f6;
			padding: 3px 6px;
			border-radius: 4px;
			font-size: 13px;
			}
			
			/* PRE */
			.service-content pre {
			background: #111827;
			color: #f9fafb;
			padding: 15px;
			border-radius: 8px;
			overflow-x: auto;
			margin: 20px 0;
			}
			
			/* STRONG */
			.service-content strong {
			color: #111827;
			}
			
			/* SMALL */
			.service-content small {
			color: #6b7280;
			}
			
			/* MARK */
			.service-content mark {
			background: #fef3c7;
			padding: 2px 5px;
			border-radius: 3px;
			}
			
			/* HIGHLIGHT BOX */
			.service-content .highlight-box {
			background: linear-gradient(135deg, #eef2ff, #f5f3ff);
			border-left: 4px solid #4f46e5;
			padding: 15px 18px;
			border-radius: 8px;
			margin: 20px 0;
			}
			
			/* ===============================
			DARK MODE (FIXED - REVERSED)
			=============================== */
			
			html[data-theme="light"] .service-content,
			html[data-theme="light"] .service-content * {
			color: #d1d5db !important;
			}
			
			html[data-theme="light"] .service-content h1,
			html[data-theme="light"] .service-content h2,
			html[data-theme="light"] .service-content h3,
			html[data-theme="light"] .service-content h4,
			html[data-theme="light"] .service-content h5,
			html[data-theme="light"] .service-content h6 {
			color: #ffffff !important;
			}
			
			
			
			/* LINKS */
			html[data-theme="dark"] .service-content a {
			color: #a5b4fc !important;
			}
			
			/* BLOCKQUOTE */
			html[data-theme="light"] .service-content blockquote {
			background: #1f2937 !important;
			border-left: 4px solid #6366f1 !important;
			color: #ffffff !important;
			}
			
			/* BLOCKQUOTE */
			html[data-theme="dark"] .service-content blockquote {
			background: rgba(94, 53, 242, 0.2) !important
			border-left: 4px solid #6366f1 !important;
			color: #ffffff !important;
			}
			
			/* TABLE */
			html[data-theme="dark"] .service-content table {
			background: #111827 !important;
			}
			html[data-theme="dark"] .service-content th {
			background: #4f46e5 !important;
			color: #fff !important;
			}
			html[data-theme="dark"] .service-content td {
			border-bottom: 1px solid #374151 !important;
			color: #e5e7eb !important;
			}
			html[data-theme="dark"] .service-content tr:nth-child(even) {
			background: #1f2937 !important;
			}
			
			/* HR */
			html[data-theme="dark"] .service-content hr {
			border-top: 1px solid #374151 !important;
			}
			
			/* CODE */
			html[data-theme="dark"] .service-content code {
			background: #1f2937 !important;
			color: #f9fafb !important;
			}
			
			/* PRE */
			html[data-theme="dark"] .service-content pre {
			background: #020617 !important;
			color: #e5e7eb !important;
			}
			
			/* STRONG */
			html[data-theme="dark"] .service-content strong {
			color: #000000 !important;
			}
			
			/* STRONG */
			html[data-theme="light"] .service-content strong {
			color: #ffffff !important;
			}
			
			/* SMALL */
			html[data-theme="dark"] .service-content small {
			color: #9ca3af !important;
			}
			
			/* MARK */
			html[data-theme="dark"] .service-content mark {
			background: #78350f !important;
			color: #fff !important;
			}
			
			/* HIGHLIGHT BOX */
			html[data-theme="dark"] .service-content .highlight-box {
			background: #1e1b4b !important;
			border-left: 4px solid #818cf8 !important;
			}
			
			/* ===============================
			EXTRA FIX (YOUR CUSTOM TABLE)
			=============================== */
			
			html[data-theme="dark"] .custom-data-table {
			background: #111827 !important;
			color: #e5e7eb !important;
			}
			html[data-theme="dark"] .custom-data-table td {
			border-bottom: 1px solid #374151 !important;
			}
			html[data-theme="dark"] .custom-data-table tr:nth-child(even) {
			background: #1f2937 !important;
			}
			
			
			
			/* Common wrapper */
			.course-media-top,
			.course-media-bottom {
			margin-bottom: 25px;
			}
			
			/* IMAGE */
			.course-image img {
			width: 100%;
			height: auto;
			border-radius: 10px;
			}
			
			/* VIDEO */
			.course-video iframe {
			width: 100%;
			height: 400px;
			border-radius: 10px;
			}
			
			/* SLIDER */
			.course-slider {
			position: relative;
			overflow: hidden;
			border-radius: 10px;
			}
			
			.course-slider .slide {
			display: none;
			}
			
			.course-slider .slide img {
			width: 100%;
			height: 400px;
			object-fit: cover;
			}
			
			/* Active slide */
			.course-slider .active {
			display: block;
			}
			
			/* Responsive */
			@media (max-width: 768px) {
			.course-video iframe,
			.course-slider .slide img {
			height: 220px;
			}
			}
			.course-slider {
			position: relative;
			overflow: hidden;
			border-radius: 10px;
			}
			
			/* Slides */
			.course-slider .slide {
			display: none;
			}
			
			.course-slider .slide.active {
			display: block;
			}
			
			.course-slider img {
			width: 100%;
			height: 400px;
			object-fit: cover;
			}
			
			/* Arrows */
			.slider-btn {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			background: rgba(0,0,0,0.5);
			color: #fff;
			border: none;
			padding: 10px 14px;
			cursor: pointer;
			border-radius: 50%;
			font-size: 18px;
			z-index: 2;
			}
			
			.slider-btn.prev { left: 10px; }
			.slider-btn.next { right: 10px; }
			
			.slider-btn:hover {
			background: rgba(0,0,0,0.8);
			}
			
			/* Dots */
			.slider-dots {
			text-align: center;
			margin-top: 10px;
			}
			
			.slider-dots .dot {
			height: 8px;
			width: 8px;
			margin: 0 5px;
			background: #ccc;
			display: inline-block;
			border-radius: 50%;
			cursor: pointer;
			}
			
			.slider-dots .dot.active {
			background: #4f46e5;
			}
			
			/* Responsive */
			@media (max-width: 768px) {
			.course-slider img {
			height: 220px;
			}
			}
			
			
			/* ===== SAMPLE HEADING ===== */
			.sample-data-box {
			background: linear-gradient(135deg, #4f46e5, #6366f1);
			padding: 20px;
			margin-top: 40px;
			border-radius: 10px;
			color: #fff;
			margin-bottom: 15px;
			}
			
			.sample-title {
			margin: 0;
			font-size: 20px;
			font-weight: 600;
			}
			
			.sample-subtitle {
			margin: 5px 0 0;
			font-size: 14px;
			opacity: 0.9;
			}
			
			/* ===== TABLE WRAPPER ===== */
			.custom-table-wrapper {
			border-radius: 10px;
			overflow: hidden;
			box-shadow: 0 5px 20px rgba(0,0,0,0.05);
			}
			
			/* ===== TABLE ===== */
			.custom-data-table {
			width: 100%;
			border-collapse: collapse;
			font-size: 14px;
			background: #fff;
			}
			
			/* HEADER */
			.custom-data-table thead {
			background: #4f46e5;
			color: #fff;
			}
			
			.custom-data-table th {
			padding: 12px;
			text-align: left;
			font-weight: 600;
			}
			
			/* BODY */
			.custom-data-table td {
			padding: 12px;
			border-bottom: 1px solid #eee;
			}
			
			/* ROW HOVER */
			.custom-data-table tbody tr:hover {
			background: #f9fafc;
			transition: 0.2s;
			}
			
			/* ALTERNATE ROW */
			.custom-data-table tbody tr:nth-child(even) {
			background: #fafafa;
			}
			
			/* GMB LINK */
			.gmb-link {
			color: #4f46e5;
			font-weight: 500;
			text-decoration: none;
			}
			
			.gmb-link:hover {
			text-decoration: underline;
			}
			
			/* NO LINK */
			.no-link {
			color: #999;
			font-size: 13px;
			}
			
			/* MOBILE */
			@media (max-width: 768px) {
			.custom-data-table th,
			.custom-data-table td {
			padding: 10px;
			font-size: 12px;
			}
			}
			
			/* ===== NO WRAP ===== */
			.nowrap {
			white-space: nowrap;
			}
			
			/* ===== PHONE COLUMN FIX ===== */
			.custom-data-table td.nowrap {
			font-weight: 500;
			letter-spacing: 0.3px;
			}
			
			/* ===== GMB BUTTON ===== */
			.gmb-btn {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			padding: 6px 12px;
			font-size: 13px;
			font-weight: 500;
			color: #fff;
			background: linear-gradient(135deg, #4f46e5, #6366f1);
			border-radius: 6px;
			text-decoration: none;
			white-space: nowrap;
			transition: all 0.2s ease;
			}
			
			/* Hover effect */
			.gmb-btn:hover {
			background: linear-gradient(135deg, #4338ca, #4f46e5);
			transform: translateY(-1px);
			box-shadow: 0 4px 10px rgba(79,70,229,0.3);
			}
			
			/* Click effect */
			.gmb-btn:active {
			transform: scale(0.97);
			}
			
			.latest-blog {
			transition: 0.2s;
			}
			.latest-blog:hover {
			transform: translateY(-3px);
			}
			
			.latest-blog {
			padding: 8px;
			border-radius: 6px;
			transition: 0.2s;
			}
			
			.latest-blog:hover {
			background: #f9fafb;
			}
			
			.latest-blog__thumb {
			width: 70px;
			height: 55px;
			flex-shrink: 0;
			position: relative;
			}
			
			.latest-blog__thumb img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			border-radius: 6px;
			}
			
			.latest-blog__title {
			font-size: 13px;
			font-weight: 500;
			line-height: 1.3;
			}
			
			.price-new {
			font-weight: 600;
			color: #111;
			font-size: 13px;
			}
			
			.price-old {
			font-size: 12px;
			color: #888;
			text-decoration: line-through;
			}
			
			.mini-badge {
			position: absolute;
			top: -6px;
			left: -6px;
			
			background: linear-gradient(135deg, #ff4d4d, #ff1a75);
			color: #fff;
			
			font-size: 10px;
			font-weight: 600;
			
			padding: 4px 7px;
			border-radius: 20px;
			
			box-shadow: 0 3px 8px rgba(255, 0, 80, 0.4);
			
			letter-spacing: 0.3px;
			}
			}
			.gmb-card {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			
			background: #fff;
			border: 1px solid #e5e7eb;
			border-radius: 8px;
			
			padding: 5px 8px;
			text-decoration: none;
			
			transition: 0.2s ease;
			}
			
			/* LEFT LOGO */
			.gmb-left img {
			width: 18px;
			height: auto;
			}
			
			/* RIGHT CONTENT */
			.gmb-right {
			display: flex;
			flex-direction: column;
			line-height: 1.1;
			}
			
			/* TOP (RATING) */
			.gmb-top {
			display: flex;
			align-items: center;
			gap: 3px;
			}
			
			.gmb-rating {
			font-size: 11px;
			font-weight: 600;
			color: #111;
			}
			
			.gmb-stars {
			font-size: 10px;
			color: #fbbc04; /* Google yellow */
			}
			
			/* BOTTOM TEXT */
			.gmb-bottom {
			font-size: 10px;
			color: #6b7280;
			}
			
			/* HOVER */
			.gmb-card:hover {
			border-color: #c6c6c6;
			background: #f8f9fa;
			}
			.gmb-stars {
			font-size: 11px;
			color: #fbbc04;
			letter-spacing: 1px;
			}
			.sample-refresh {
			font-size: 12px;
			color: #ffffff;
			margin: 6px 0 10px;
			}