

/* About Us Intro Section - jmdhab Prefix */
.jmdhab-about-intro {
	position: relative;
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	overflow: hidden;
  }
  
  /* Decorative Background */
  .jmdhab-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
  }
  
  .jmdhab-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	opacity: 0.03;
	animation: jmdhab-float 20s ease-in-out infinite;
  }
  
  .shape-1 {
	width: 600px;
	height: 600px;
	top: -200px;
	right: -200px;
  }
  
  .shape-2 {
	width: 400px;
	height: 400px;
	bottom: -150px;
	left: -150px;
	animation-delay: -5s;
  }
  
  .shape-3 {
	width: 300px;
	height: 300px;
	top: 40%;
	left: 20%;
	animation-delay: -10s;
  }
  
  .jmdhab-grid {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
	  linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
	  linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
  }
  
  @keyframes jmdhab-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -30px) scale(1.1); }
	66% { transform: translate(-20px, 20px) scale(0.9); }
  }
  
  .jmdhab-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 10;
  }
  
  /* Content Grid */
  .jmdhab-content-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	margin-bottom: 80px;
	align-items: start;
  }
  
  /* Left Column Styles */
  .jmdhab-intro-main {
	animation: jmdhab-fadeInUp 0.8s ease-out;
  }
  
  .jmdhab-trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 40px;
	margin-bottom: 30px;
	border: 1px solid rgba(59, 130, 246, 0.2);
  }
  
  .jmdhab-badge-icon {
	font-size: 1.2rem;
  }
  
  .jmdhab-badge-text {
	font-size: 0.9rem;
	font-weight: 600;
	color: #3b82f6;
	letter-spacing: 0.5px;
  }
  
  .jmdhab-hero-title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #1e293b;
	margin-bottom: 25px;
  }
  
  .jmdhab-gradient-text {
	background: #01B2B7;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
  }
  
  .jmdhab-description {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 40px;
	max-width: 90%;
  }
  
  /* Stats Bar */
  .jmdhab-stats-bar {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
	padding: 20px;
	background: white;
	border-radius: 60px;
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
	max-width: fit-content;
  }
  
  .jmdhab-stat-item {
	text-align: center;
  }
  
  .jmdhab-stat-number {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	background: linear-gradient(135deg, #1e293b, #3b82f6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
  }
  
  .jmdhab-stat-label {
	font-size: 0.8rem;
	color: #64748b;
	font-weight: 500;
  }
  
  .jmdhab-stat-divider {
	width: 1px;
	height: 30px;
	background: #e2e8f0;
  }
  
  /* CTA Buttons */
  .jmdhab-cta-group {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
  }
  
  .jmdhab-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
  }
  
  .jmdhab-btn-primary {
	background: linear-gradient(135deg, #1e293b, #0f172a);
	color: white;
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
  }
  
  .jmdhab-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.3);
  }
  
  .jmdhab-btn-primary svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
  }
  
  .jmdhab-btn-primary:hover svg {
	transform: translateX(5px) rotate(45deg);
  }
  
  .jmdhab-btn-outline {
	background: transparent;
	border: 2px solid #1e293b;
	color: #1e293b;
  }
  
  .jmdhab-btn-outline:hover {
	background: #1e293b;
	color: white;
	transform: translateY(-2px);
  }
  
  .jmdhab-btn-outline svg {
	width: 18px;
	height: 18px;
  }
  
  /* Right Column Cards */
  .jmdhab-mission-vision {
	display: flex;
	flex-direction: column;
	gap: 30px;
  }
  
  .jmdhab-card {
	position: relative;
	padding: 40px;
	border-radius: 40px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	animation: jmdhab-fadeInUp 0.8s ease-out backwards;
  }
  
  .jmdhab-mission-card {
	background: linear-gradient(145deg, #3b82f6, #2563eb);
	animation-delay: 0.2s;
  }
  
  .jmdhab-vision-card {
	background: linear-gradient(145deg, #8b5cf6, #6d28d9);
	animation-delay: 0.4s;
  }
  
  .jmdhab-card:hover {
	transform: translateY(-10px) scale(1.02);
  }
  
  .jmdhab-card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.4s ease;
  }
  
  .jmdhab-card:hover .jmdhab-card-glow {
	opacity: 1;
  }
  
  .jmdhab-card-content {
	position: relative;
	z-index: 2;
	color: white;
  }
  
  .jmdhab-card-icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .jmdhab-card-icon svg {
	width: 30px;
	height: 30px;
	color: white;
  }
  
  .jmdhab-card-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
  }
  
  .jmdhab-card-text {
	font-size: 1rem;
	line-height: 1.7;
	opacity: 0.9;
	margin-bottom: 0;
  }
  
  .jmdhab-card-decoration {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
  }
  
  /* Values Section */
  .jmdhab-values-section {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #e2e8f0;
  }
  
  .jmdhab-values-header {
	text-align: center;
	margin-bottom: 50px;
  }
  
  .jmdhab-values-tag {
	display: inline-block;
	padding: 6px 18px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 15px;
  }
  
  .jmdhab-values-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #ffffff;
  }
  
  .jmdhab-values-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
  }
  
  .jmdhab-value-card {
	position: relative;
	background: white;
	padding: 30px 20px;
	border-radius: 30px;
	text-align: center;
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	overflow: hidden;
  }
  
  .jmdhab-value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.2);
	border-color: #3b82f6;
  }
  
  .jmdhab-value-icon-wrapper {
	position: relative;
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .jmdhab-value-icon-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 30px;
	opacity: 0.1;
	transition: all 0.3s ease;
  }
  
  .jmdhab-value-card:hover .jmdhab-value-icon-bg {
	opacity: 0.2;
	transform: scale(1.1);
  }
  
  .jmdhab-value-icon {
	width: 35px;
	height: 35px;
	color: #3b82f6;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
  }
  
  .jmdhab-value-card:hover .jmdhab-value-icon {
	transform: scale(1.1);
	color: #8b5cf6;
  }
  
  .jmdhab-value-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 10px;
  }
  
  .jmdhab-value-desc {
	font-size: 0.85rem;
	color: #64748b;
	line-height: 1.5;
  }
  
  .jmdhab-value-shine {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
  }
  
  .jmdhab-value-card:hover .jmdhab-value-shine {
	transform: translateX(100%);
  }
  
  /* Bottom Wave */
  .jmdhab-bottom-wave {
	position: relative;
	width: 100%;
	margin-top: 60px;
	line-height: 0;
  }
  
  .jmdhab-bottom-wave svg {
	width: 100%;
	height: 60px;
	fill: #f8fafc;
  }
  
  /* Animations */
  @keyframes jmdhab-fadeInUp {
	from {
	  opacity: 0;
	  transform: translateY(30px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
	.jmdhab-values-grid {
	  grid-template-columns: repeat(3, 1fr);
	}
  }
  
  @media (max-width: 1024px) {
	.jmdhab-content-grid {
	  grid-template-columns: 1fr;
	  gap: 40px;
	}
  
	.jmdhab-hero-title {
	  font-size: 2.5rem;
	}
  
	.jmdhab-description {
	  max-width: 100%;
	}
  }
  
  @media (max-width: 768px) {
	.jmdhab-about-intro {
	  padding: 80px 0 60px;
	}
  
	.jmdhab-hero-title {
	  font-size: 2rem;
	}
  
	.jmdhab-stats-bar {
	  flex-direction: column;
	  gap: 15px;
	  align-items: flex-start;
	  padding: 15px;
	}
  
	.jmdhab-stat-divider {
	  display: none;
	}
  
	.jmdhab-cta-group {
	  flex-direction: column;
	}
  
	.jmdhab-values-grid {
	  grid-template-columns: repeat(2, 1fr);
	}
  }
  
  @media (max-width: 480px) {
	.jmdhab-container {
	  padding: 0 20px;
	}
  
	.jmdhab-hero-title {
	  font-size: 1.6rem;
	}
  
	.jmdhab-values-grid {
	  grid-template-columns: 1fr;
	}
  
	.jmdhab-card {
	  padding: 30px;
	}
  
	.jmdhab-card-title {
	  font-size: 1.5rem;
	}
  }
  
  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
	.jmdhab-about-intro {
	  background: linear-gradient(135deg, #0f172a, #1e293b);
	}
  
	.jmdhab-hero-title {
	  color: #f1f5f9;
	}
  
	.jmdhab-description {
	  color: #cbd5e1;
	}
  
	.jmdhab-stats-bar {
	  background: #1e293b;
	  border-color: #334155;
	}
  
	.jmdhab-stat-label {
	  color: #94a3b8;
	}
  
	.jmdhab-value-card {
	  background: #1e293b;
	  border-color: #334155;
	}
  
	.jmdhab-value-title {
	  color: #f1f5f9;
	}
  
	.jmdhab-value-desc {
	  color: #94a3b8;
	}
  }






  /* Conditions We Treat Section */
.jmdhab-conditions-section {
	position: relative;
	padding: 100px 0;
	background: #ffffff;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	overflow: hidden;
  }
  
  /* Decorative Background */
  .jmdhab-conditions-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
  }
  
  .jmdhab-bg-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	opacity: 0.02;
	animation: jmdhab-float 20s ease-in-out infinite;
  }
  
  .jmdhab-bg-shape.shape-1 {
	width: 600px;
	height: 600px;
	top: -200px;
	right: -200px;
  }
  
  .jmdhab-bg-shape.shape-2 {
	width: 400px;
	height: 400px;
	bottom: -150px;
	left: -150px;
	animation-delay: -10s;
  }
  
  .jmdhab-bg-grid {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
	  linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
	  linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
	background-size: 50px 50px;
  }
  
  @keyframes jmdhab-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -30px) scale(1.1); }
	66% { transform: translate(-20px, 20px) scale(0.9); }
  }
  
  .jmdhab-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 10;
  }
  
  /* Section Header */
  .jmdhab-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
	animation: jmdhab-fadeInUp 0.8s ease-out;
  }
  
  .jmdhab-header-tag {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 20px;
  }
  
  .jmdhab-tag-line {
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  }
  
  .jmdhab-tag-text {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ffffff;
	background: rgba(59, 130, 246, 0.1);
	padding: 6px 18px;
	border-radius: 30px;
  }
  
  .jmdhab-section-title {
	font-size: 3rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 15px;
  }
  
  .jmdhab-title-amp {
	font-size: 2rem;
	color: #94a3b8;
	font-weight: 400;
	margin: 0 5px;
  }
  
  .jmdhab-title-gradient {
	background: #01B2B7;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  }
  
  .jmdhab-title-decoration {
	margin-bottom: 25px;
  }
  
  .jmdhab-decoration-heart {
	font-size: 2rem;
	animation: jmdhab-pulse 2s ease-in-out infinite;
	display: inline-block;
  }
  
  @keyframes jmdhab-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
  }
  
  .jmdhab-section-description {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #475569;
	max-width: 700px;
	margin: 0 auto;
  }
  
  /* Conditions Grid */
  .jmdhab-conditions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 60px;
  }
  
  /* Category Cards */
  .jmdhab-category-card {
	background: #ffffff;
	border-radius: 30px;
	padding: 25px;
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	animation: jmdhab-fadeInUp 0.8s ease-out backwards;
  }
  
  .jmdhab-category-card:nth-child(1) { animation-delay: 0.1s; }
  .jmdhab-category-card:nth-child(2) { animation-delay: 0.2s; }
  .jmdhab-category-card:nth-child(3) { animation-delay: 0.3s; }
  .jmdhab-category-card:nth-child(4) { animation-delay: 0.4s; }
  .jmdhab-category-card:nth-child(5) { animation-delay: 0.5s; }
  .jmdhab-category-card:nth-child(6) { animation-delay: 0.6s; }
  .jmdhab-category-card:nth-child(7) { animation-delay: 0.7s; }
  .jmdhab-category-card:nth-child(8) { animation-delay: 0.8s; }
  .jmdhab-category-card:nth-child(9) { animation-delay: 0.9s; }
  .jmdhab-category-card:nth-child(10) { animation-delay: 1s; }
  
  .jmdhab-category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.2);
	border-color: #3b82f6;
  }
  
  .jmdhab-card-highlight {
	border-left: 4px solid #3b82f6;
	background: linear-gradient(145deg, #ffffff, #f8fafc);
  }
  
  .jmdhab-card-full {
	grid-column: span 1;
  }
  
  /* Category Header */
  .jmdhab-category-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e2e8f0;
	position: relative;
  }
  
  .jmdhab-category-icon {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
  }
  
  .jmdhab-category-icon svg {
	width: 24px;
	height: 24px;
	color: white;
  }
  
  .jmdhab-category-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1e293b;
	flex: 1;
	line-height: 1.3;
  }
  
  .jmdhab-category-count {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 10px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 30px;
	color: #3b82f6;
	white-space: nowrap;
  }
  
  /* Conditions List */
  .jmdhab-conditions-list {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .jmdhab-condition-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
	border-bottom: 1px solid #f1f5f9;
	font-size: 0.95rem;
	transition: all 0.2s ease;
  }
  
  .jmdhab-condition-item:hover {
	transform: translateX(5px);
	background: #f8fafc;
  }
  
  .jmdhab-item-bullet {
	color: #3b82f6;
	font-size: 0.5rem;
	opacity: 0.7;
  }
  
  .jmdhab-item-text {
	flex: 1;
	color: #334155;
  }
  
  .jmdhab-item-badge {
	font-size: 0.7rem;
	padding: 3px 8px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	border-radius: 30px;
	font-weight: 600;
	white-space: nowrap;
  }
  
  /* Awareness Card Special */
  .jmdhab-awareness-content {
	padding: 10px 0;
  }
  
  .jmdhab-awareness-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #475569;
	margin-bottom: 15px;
	font-style: italic;
  }
  
  .jmdhab-awareness-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #3b82f6;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
  }
  
  .jmdhab-awareness-link:hover {
	gap: 12px;
	color: #8b5cf6;
  }
  
  .jmdhab-awareness-link svg {
	width: 16px;
	height: 16px;
  }
  
  /* CTA Section */
  .jmdhab-conditions-cta {
	position: relative;
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border-radius: 60px;
	padding: 40px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	animation: jmdhab-fadeInUp 0.8s ease-out 1.1s backwards;
  }
  
  .jmdhab-cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
  }
  
  .jmdhab-cta-title-a {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
  }
  
  .jmdhab-cta-text {
	font-size: 1.1rem;
	color: #475569;
	margin-bottom: 25px;
  }
  
  .jmdhab-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.3);
  }
  
  .jmdhab-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 30px -5px rgba(59, 130, 246, 0.4);
	gap: 15px;
  }
  
  .jmdhab-cta-button svg {
	width: 18px;
	height: 18px;
  }
  
  .jmdhab-cta-decoration {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
	border-radius: 50%;
	z-index: 1;
  }
  
  /* Animations */
  @keyframes jmdhab-fadeInUp {
	from {
	  opacity: 0;
	  transform: translateY(30px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
	.jmdhab-conditions-grid {
	  grid-template-columns: repeat(2, 1fr);
	}
	
	.jmdhab-card-full {
	  grid-column: span 1;
	}
  }
  
  @media (max-width: 768px) {
	.jmdhab-conditions-section {
	  padding: 80px 0;
	}
  
	.jmdhab-section-title {
	  font-size: 2.2rem;
	}
  
	.jmdhab-conditions-grid {
	  grid-template-columns: 1fr;
	  gap: 20px;
	}
  
	.jmdhab-category-card {
	  padding: 20px;
	}
  
	.jmdhab-conditions-cta {
	  padding: 30px 20px;
	}
  
	.jmdhab-cta-title {
	  font-size: 1.5rem;
	}
  }
  
  @media (max-width: 480px) {
	.jmdhab-container {
	  padding: 0 20px;
	}
  
	.jmdhab-section-title {
	  font-size: 1.8rem;
	}
  
	.jmdhab-section-description {
	  font-size: 1rem;
	}
  
	.jmdhab-category-header {
	  flex-wrap: wrap;
	}
  
	.jmdhab-category-title {
	  font-size: 1rem;
	}
  
	.jmdhab-item-badge {
	  font-size: 0.65rem;
	  padding: 2px 6px;
	}
  }
  
  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
	.jmdhab-conditions-section {
	  background: #0f172a;
	}
  
	.jmdhab-section-title {
	  color: #f1f5f9;
	}
  
	.jmdhab-section-description {
	  color: #cbd5e1;
	}
  
	.jmdhab-category-card {
	  background: #1e293b;
	  border-color: #334155;
	}
  
	.jmdhab-category-title {
	  color: #f1f5f9;
	}
  
	.jmdhab-item-text {
	  color: #cbd5e1;
	}
  
	.jmdhab-condition-item:hover {
	  background: #2d3a4f;
	}
  
	.jmdhab-conditions-cta {
	  background: linear-gradient(135deg, #1e293b, #2d3a4f);
	  border-color: #334155;
	}
  
	.jmdhab-cta-title {
	  color: #f1f5f9;
	}
  
	.jmdhab-cta-text {
	  color: #cbd5e1;
	}
  }




  /* About Us CTA Section - White Background */
.jmdhab-about-cta {
	position: relative;
	padding: 100px 0;
	background: #ffffff;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	overflow: hidden;
  }
  
  /* Decorative Background Elements */
  .jmdhab-cta-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
  }
  
  .jmdhab-cta-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	opacity: 0.03;
  }
  
  .shape-1 {
	width: 500px;
	height: 500px;
	top: -200px;
	right: -100px;
	animation: jmdhab-float 20s ease-in-out infinite;
  }
  
  .shape-2 {
	width: 350px;
	height: 350px;
	bottom: -150px;
	left: -50px;
	animation: jmdhab-float 18s ease-in-out infinite reverse;
  }
  
  .shape-3 {
	width: 200px;
	height: 200px;
	top: 40%;
	left: 20%;
	animation: jmdhab-float 22s ease-in-out infinite;
  }
  
  .jmdhab-cta-dots {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(#3b82f6 1px, transparent 1px);
	background-size: 30px 30px;
	opacity: 0.02;
  }
  
  @keyframes jmdhab-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(20px, -20px) scale(1.05); }
	66% { transform: translate(-15px, 15px) scale(0.95); }
  }
  
  .jmdhab-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 10;
  }
  
  /* Main Wrapper */
  .jmdhab-cta-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
	margin-bottom: 50px;
  }
  
  /* Left Column - Message */
  .jmdhab-cta-message {
	padding-right: 30px;
	animation: jmdhab-fadeInLeft 0.8s ease-out;
  }
  
  .jmdhab-cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: #f8fafc;
	border-radius: 30px;
	margin-bottom: 25px;
	border: 1px solid #e2e8f0;
  }
  
  .jmdhab-badge-dot {
	width: 8px;
	height: 8px;
	background: #3b82f6;
	border-radius: 50%;
	animation: jmdhab-pulse 2s infinite;
  }
  
  @keyframes jmdhab-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.2); opacity: 0.7; }
  }
  
  .jmdhab-badge-text {
	font-size: 0.85rem;
	font-weight: 600;
	color: #3b82f6;
	letter-spacing: 0.5px;
  }
  
  .jmdhab-cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #1e293b;
	margin-bottom: 20px;
  }
  
  .jmdhab-title-highlight {
	background: #01B2B7;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
  }
  
  .jmdhab-cta-description {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 30px;
  }
  
  /* Benefits Pills */
  .jmdhab-benefits-pills {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
  }
  
  .jmdhab-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #f1f5f9;
	border-radius: 40px;
	transition: all 0.3s ease;
  }
  
  .jmdhab-pill:hover {
	background: #e2e8f0;
	transform: translateY(-2px);
  }
  
  .jmdhab-pill-icon {
	width: 16px;
	height: 16px;
	color: #3b82f6;
  }
  
  .jmdhab-pill span {
	font-size: 0.9rem;
	font-weight: 500;
	color: #334155;
  }
  
  /* Right Column - Actions */
  .jmdhab-cta-actions {
	display: flex;
	flex-direction: column;
	gap: 20px;
  }
  
  /* Main Action Card */
  .jmdhab-action-card {
	position: relative;
	background: #ffffff;
	border-radius: 30px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
  }
  
  .jmdhab-action-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.2);
	border-color: #3b82f6;
  }
  
  .jmdhab-main-card {
	background: linear-gradient(145deg, #ffffff, #f8fafc);
  }
  
  .jmdhab-card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
  }
  
  .jmdhab-action-card:hover .jmdhab-card-glow {
	opacity: 1;
  }
  
  .jmdhab-card-content {
	position: relative;
	padding: 30px;
	z-index: 2;
  }
  
  .jmdhab-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: white;
  }
  
  .jmdhab-card-icon.small {
	width: 45px;
	height: 45px;
	border-radius: 15px;
  }
  
  .jmdhab-card-icon svg {
	width: 28px;
	height: 28px;
  }
  
  .jmdhab-card-icon.small svg {
	width: 20px;
	height: 20px;
  }
  
  .jmdhab-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 10px;
  }
  
  .jmdhab-card-text {
	font-size: 1rem;
	color: #1a1f32;
	line-height: 1.6;
	margin-bottom: 20px;
  }
  
  /* Feature List */
  .jmdhab-feature-list {
	margin-bottom: 25px;
  }
  
  .jmdhab-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid #e2e8f0;
  }
  
  .jmdhab-feature:last-child {
	border-bottom: none;
  }
  
  .jmdhab-feature svg {
	width: 18px;
	height: 18px;
	color: #3b82f6;
  }
  
  .jmdhab-feature span {
	font-size: 0.95rem;
	color: #334155;
  }
  
  /* CTA Button */
  .jmdhab-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
  }
  
  .jmdhab-button-primary {
	background: linear-gradient(135deg, #1e293b, #0f172a);
	color: white;
	border: none;
  }
  
  .jmdhab-button-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
  }
  
  .jmdhab-button-primary svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
  }
  
  .jmdhab-button-primary:hover svg {
	transform: translateX(5px);
  }
  
  /* Secondary Cards Grid */
  .jmdhab-secondary-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
  }
  
  .jmdhab-secondary-card {
	background: #ffffff;
  }
  
  .jmdhab-card-subtitle {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 5px;
  }
  
  .jmdhab-card-small-text {
	font-size: 0.9rem;
	color: #64748b;
	margin-bottom: 15px;
  }
  
  /* Text Link */
  .jmdhab-text-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #3b82f6;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
  }
  
  .jmdhab-text-link:hover {
	gap: 10px;
	color: #8b5cf6;
  }
  
  .jmdhab-text-link svg {
	width: 14px;
	height: 14px;
  }
  
  .jmdhab-hours-note {
	display: block;
	font-size: 0.8rem;
	color: #94a3b8;
	margin-top: 5px;
  }
  
  /* Trust Bar */
  .jmdhab-trust-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	padding: 25px;
	background: #f8fafc;
	border-radius: 60px;
	margin-bottom: 30px;
	border: 1px solid #e2e8f0;
	flex-wrap: wrap;
  }
  
  .jmdhab-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
  }
  
  .jmdhab-trust-item svg {
	width: 20px;
	height: 20px;
	color: #3b82f6;
  }
  
  .jmdhab-trust-item span {
	font-size: 0.95rem;
	color: #334155;
	font-weight: 500;
  }
  
  /* Emergency Notice */
  .jmdhab-emergency-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 15px 25px;
	background: #fff1f0;
	border-radius: 50px;
	max-width: fit-content;
	margin: 0 auto;
	border: 1px solid #fecaca;
  }
  
  .jmdhab-emergency-dot {
	width: 10px;
	height: 10px;
	background: #ef4444;
	border-radius: 50%;
	animation: jmdhab-pulse-red 2s infinite;
  }
  
  @keyframes jmdhab-pulse-red {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.3); opacity: 0.7; }
  }
  
  .jmdhab-emergency-notice p {
	font-size: 0.95rem;
	color: #7f1d1d;
	margin: 0;
  }
  
  .jmdhab-emergency-notice a {
	color: #ef4444;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid #ef4444;
  }
  
  .jmdhab-emergency-notice a:hover {
	color: #dc2626;
	border-bottom-color: #dc2626;
  }
  
  /* Animations */
  @keyframes jmdhab-fadeInLeft {
	from {
	  opacity: 0;
	  transform: translateX(-30px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
	.jmdhab-cta-wrapper {
	  grid-template-columns: 1fr;
	  gap: 40px;
	}
  
	.jmdhab-cta-message {
	  padding-right: 0;
	}
  
	.jmdhab-cta-title {
	  font-size: 2rem;
	}
  }
  
  @media (max-width: 768px) {
	.jmdhab-about-cta {
	  padding: 60px 0;
	}
  
	.jmdhab-cta-title {
	  font-size: 1.8rem;
	}
  
	.jmdhab-secondary-grid {
	  grid-template-columns: 1fr;
	}
  
	.jmdhab-trust-bar {
	  flex-direction: column;
	  gap: 20px;
	  align-items: flex-start;
	  padding: 20px;
	}
  
	.jmdhab-emergency-notice {
	  flex-direction: column;
	  text-align: center;
	  padding: 20px;
	}
  }
  
  @media (max-width: 480px) {
	.jmdhab-container {
	  padding: 0 20px;
	}
  
	.jmdhab-cta-title {
	  font-size: 1.5rem;
	}
  
	.jmdhab-benefits-pills {
	  flex-direction: column;
	}
  
	.jmdhab-pill {
	  width: 100%;
	}
  
	.jmdhab-card-content {
	  padding: 20px;
	}
  }
  
  /* Print Styles */
  @media print {
	.jmdhab-about-cta {
	  background: none;
	  padding: 20px 0;
	}
  
	.jmdhab-action-card {
	  box-shadow: none;
	  border: 1px solid #000;
	}
  }



  /* Services Section - jmdhab Prefix */
.jmdhab-services {
	position: relative;
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	overflow: hidden;
  }
  
  /* Decorative Background */
  .jmdhab-services-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
  }
  
  .jmdhab-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.1;
	animation: jmdhab-float 20s ease-in-out infinite;
  }
  
  .orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #3b82f6, #8b5cf6);
	top: -200px;
	right: -200px;
  }
  
  .orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, #ec4899, #8b5cf6);
	bottom: -200px;
	left: -200px;
	animation-delay: -5s;
  }
  
  .orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #3b82f6, #00d4ff);
	top: 40%;
	left: 40%;
	animation-delay: -10s;
  }
  
  .jmdhab-bg-grid {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
	  linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
	  linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
  }
  
  .jmdhab-bg-dots {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px);
	background-size: 30px 30px;
  }
  
  @keyframes jmdhab-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -30px) scale(1.1); }
	66% { transform: translate(-20px, 20px) scale(0.9); }
  }
  
  .jmdhab-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 10;
  }
  
  /* Section Header */
  .jmdhab-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
	animation: jmdhab-fadeInUp 0.8s ease-out;
  }
  
  .jmdhab-header-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 40px;
	color: white;
	margin-bottom: 25px;
	box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.3);
  }
  
  .jmdhab-tag-icon {
	font-size: 1.2rem;
  }
  
  .jmdhab-tag-text {
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1px;
  }
  
  .jmdhab-header-title {
	font-size: 3rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 20px;
  }
  
  .jmdhab-title-gradient {
	background: #01B2B7;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
  }
  
  .jmdhab-header-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 25px;
  }
  
  .jmdhab-divider-line {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  }
  
  .jmdhab-divider-icon {
	font-size: 1.5rem;
	animation: jmdhab-float 3s ease-in-out infinite;
  }
  
  .jmdhab-header-description {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #475569;
	max-width: 700px;
	margin: 0 auto;
  }
  
  /* Services Grid */
  .jmdhab-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
  }
  
  /* Service Card */
  .jmdhab-service-card {
	position: relative;
	background: white;
	border-radius: 40px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
	animation: jmdhab-fadeInUp 0.8s ease-out backwards;
  }
  
  .jmdhab-service-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.3);
	border-color: #3b82f6;
  }
  
  /* Staggered animations */
  .jmdhab-service-card:nth-child(1) { animation-delay: 0.1s; }
  .jmdhab-service-card:nth-child(2) { animation-delay: 0.15s; }
  .jmdhab-service-card:nth-child(3) { animation-delay: 0.2s; }
  .jmdhab-service-card:nth-child(4) { animation-delay: 0.25s; }
  .jmdhab-service-card:nth-child(5) { animation-delay: 0.3s; }
  .jmdhab-service-card:nth-child(6) { animation-delay: 0.35s; }
  .jmdhab-service-card:nth-child(7) { animation-delay: 0.4s; }
  .jmdhab-service-card:nth-child(8) { animation-delay: 0.45s; }
  .jmdhab-service-card:nth-child(9) { animation-delay: 0.5s; }
  .jmdhab-service-card:nth-child(10) { animation-delay: 0.55s; }
  .jmdhab-service-card:nth-child(11) { animation-delay: 0.6s; }
  .jmdhab-service-card:nth-child(12) { animation-delay: 0.65s; }
  
  .jmdhab-card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
  }
  
  .jmdhab-service-card:hover .jmdhab-card-glow {
	opacity: 1;
  }
  
  .jmdhab-card-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 6px 15px;
	background: #01B2B7;
	color: white;
	border-radius: 30px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	z-index: 5;
	box-shadow: 0 5px 15px -5px rgba(59, 130, 246, 0.4);
  }
  
  .jmdhab-card-inner {
	position: relative;
	padding: 40px 30px 35px;
	z-index: 2;
  }
  
  .jmdhab-card-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #f8fafc, #ffffff);
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
  }
  
  .jmdhab-service-card:hover .jmdhab-card-icon {
	border-color: #3b82f6;
	transform: scale(1.05);
  }
  
  .jmdhab-card-icon svg {
	width: 35px;
	height: 35px;
	color: #3b82f6;
	transition: all 0.3s ease;
  }
  
  .jmdhab-service-card:hover .jmdhab-card-icon svg {
	color: #8b5cf6;
	transform: rotate(5deg);
  }
  
  .jmdhab-card-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 15px;
	line-height: 1.4;
  }
  
  .jmdhab-card-description {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 20px;
  }
  
  .jmdhab-card-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 25px;
	padding: 15px 0;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
  }
  
  .jmdhab-feature {
	font-size: 0.9rem;
	color: #334155;
	display: flex;
	align-items: center;
	gap: 8px;
  }
  
  .jmdhab-feature::before {
	content: "✓";
	color: #3b82f6;
	font-weight: 700;
  }
  
  .jmdhab-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #3b82f6;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
  }
  
  .jmdhab-card-link:hover {
	gap: 12px;
	color: #8b5cf6;
  }
  
  .jmdhab-card-link svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
  }
  
  .jmdhab-card-link:hover svg {
	transform: translateX(5px);
  }
  
  /* Bottom CTA */
  .jmdhab-services-cta {
	background: linear-gradient(135deg, #1e293b, #0f172a);
	border-radius: 60px;
	padding: 60px;
	text-align: center;
	box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
	animation: jmdhab-fadeInUp 0.8s ease-out 0.8s backwards;
  }
  
  .jmdhab-services-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
	animation: jmdhab-rotate 20s linear infinite;
  }
  
  @keyframes jmdhab-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
  }
  
  .jmdhab-cta-content {
	position: relative;
	z-index: 2;
  }
  
  .jmdhabs-cta-title {
	font-size: 2rem;
	font-weight: 700;
	color: white;
	margin-bottom: 15px;
  }
  
  .jmdhab-cta-text {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
  }
  
  .jmdhab-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 45px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 50px;
	color: #ffffff !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.4);
  }
  
  .jmdhab-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.5);
	gap: 15px;
  }
  
  .jmdhab-cta-button svg {
	width: 20px;
	height: 20px;
  }
  
  /* Animations */
  @keyframes jmdhab-fadeInUp {
	from {
	  opacity: 0;
	  transform: translateY(30px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
	.jmdhab-services-grid {
	  grid-template-columns: repeat(2, 1fr);
	}
  }
  
  @media (max-width: 900px) {
	.jmdhab-header-title {
	  font-size: 2.5rem;
	}
  }
  
  @media (max-width: 768px) {
	.jmdhab-services {
	  padding: 80px 0;
	}
  
	.jmdhab-services-grid {
	  grid-template-columns: 1fr;
	  gap: 25px;
	}
  
	.jmdhab-header-title {
	  font-size: 2rem;
	}
  
	.jmdhab-header-description {
	  font-size: 1rem;
	}
  
	.jmdhab-services-cta {
	  padding: 40px 25px;
	  border-radius: 40px;
	}
  
	.jmdhab-cta-title {
	  font-size: 1.5rem;
	}
  
	.jmdhab-cta-button {
	  padding: 15px 30px;
	  font-size: 1rem;
	}
  }
  
  @media (max-width: 480px) {
	.jmdhab-container {
	  padding: 0 20px;
	}
  
	.jmdhab-card-title {
	  font-size: 1.2rem;
	}
  
	.jmdhab-card-description {
	  font-size: 0.9rem;
	}
  
	.jmdhab-cta-title {
	  font-size: 1.3rem;
	}
  }
  
  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
	.jmdhab-services {
	  background: linear-gradient(135deg, #0f172a, #1e293b);
	}
  
	.jmdhab-service-card {
	  background: #1e293b;
	  border-color: #334155;
	}
  
	.jmdhab-card-title {
	  color: #f1f5f9;
	}
  
	.jmdhab-card-description {
	  color: #cbd5e1;
	}
  
	.jmdhab-card-features {
	  border-color: #334155;
	}
  
	.jmdhab-feature {
	  color: #94a3b8;
	}
  
	.jmdhab-header-title {
	  color: #f1f5f9;
	}
  
	.jmdhab-header-description {
	  color: #cbd5e1;
	}
  }


  /* Services Mini Slider - jmdhab Prefix */
.jmdhab-services-mini {
	position: relative;
	padding: 40px 0;
	background: #ffffff;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	overflow: hidden;
  }
  
  .jmdhab-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
  }
  
  /* Optional Header */
  .jmdhab-mini-header {
	text-align: center;
	margin-bottom: 30px;
  }
  
  .jmdhab-mini-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 5px;
  }
  
  .jmdhab-mini-subtitle {
	font-size: 0.9rem;
	color: #64748b;
  }
  
  /* Mini Slider Container */
  .jmdhab-mini-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 10px 0 20px;
  }
  
  /* Slider Track */
  .jmdhab-mini-track {
	display: flex;
	gap: 20px;
	animation: jmdhab-slide 25s linear infinite;
	width: fit-content;
  }
  
  .jmdhab-mini-track:hover {
	animation-play-state: paused;
  }
  
  @keyframes jmdhab-slide {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-100% / 2)); }
  }
  
  /* Mini Card Items */
  .jmdhab-mini-item {
	flex: 0 0 200px;
  }
  
  .jmdhab-mini-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 20px 15px;
	text-align: center;
	box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.05);
	border: 1px solid #f1f5f9;
	transition: all 0.3s ease;
	cursor: pointer;
  }
  
  .jmdhab-mini-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.15);
	border-color: #3b82f6;
  }
  
  /* Icon */
  .jmdhab-mini-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #f8fafc, #ffffff);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
  }
  
  .jmdhab-mini-card:hover .jmdhab-mini-icon {
	border-color: #3b82f6;
	transform: scale(1.05);
  }
  
  .jmdhab-mini-icon svg {
	width: 25px;
	height: 25px;
	color: #3b82f6;
	transition: all 0.3s ease;
  }
  
  .jmdhab-mini-card:hover .jmdhab-mini-icon svg {
	color: #8b5cf6;
  }
  
  /* Text */
  .jmdhab-mini-name {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 5px;
	line-height: 1.4;
  }
  
  .jmdhab-mini-badge {
	display: inline-block;
	padding: 3px 10px;
	background: #f1f5f9;
	border-radius: 30px;
	font-size: 0.7rem;
	color: #475569;
	font-weight: 500;
	transition: all 0.3s ease;
  }
  
  .jmdhab-mini-card:hover .jmdhab-mini-badge {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
  }
  
  /* Navigation Arrows */
  .jmdhab-mini-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	opacity: 0;
	animation: jmdhab-fadeIn 0.3s ease forwards;
  }
  
  .jmdhab-mini-slider:hover .jmdhab-mini-arrow {
	opacity: 1;
  }
  
  .jmdhab-mini-arrow:hover {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-color: transparent;
  }
  
  .jmdhab-mini-arrow:hover svg {
	color: white;
  }
  
  .jmdhab-mini-arrow svg {
	width: 18px;
	height: 18px;
	color: #1e293b;
	transition: all 0.3s ease;
  }
  
  .jmdhab-mini-prev {
	left: 10px;
  }
  
  .jmdhab-mini-next {
	right: 10px;
  }
  
  /* Progress Indicators */
  .jmdhab-mini-progress {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 20px;
	padding: 0 10px;
  }
  
  .jmdhab-progress-bar {
	flex: 1;
	height: 4px;
	background: #e2e8f0;
	border-radius: 4px;
	overflow: hidden;
  }
  
  .jmdhab-progress-fill {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
	border-radius: 4px;
	animation: jmdhab-progress 25s linear infinite;
  }
  
  @keyframes jmdhab-progress {
	0% { width: 0%; }
	100% { width: 100%; }
  }
  
  .jmdhab-progress-dots {
	display: flex;
	gap: 6px;
  }
  
  .jmdhab-dot {
	width: 6px;
	height: 6px;
	background: #cbd5e1;
	border-radius: 50%;
	transition: all 0.3s ease;
  }
  
  .jmdhab-dot.active {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	width: 16px;
	border-radius: 8px;
  }
  
  /* Animation */
  @keyframes jmdhab-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
  }
  
  /* Hover pause for accessibility */
  @media (prefers-reduced-motion: reduce) {
	.jmdhab-mini-track {
	  animation: none;
	}
	
	.jmdhab-progress-fill {
	  animation: none;
	  width: 25%;
	}
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.jmdhab-mini-item {
	  flex: 0 0 160px;
	}
  
	.jmdhab-mini-name {
	  font-size: 0.85rem;
	}
  
	.jmdhab-mini-badge {
	  font-size: 0.65rem;
	}
  
	.jmdhab-mini-arrow {
	  width: 30px;
	  height: 30px;
	}
  
	.jmdhab-mini-arrow svg {
	  width: 15px;
	  height: 15px;
	}
  }
  
  @media (max-width: 480px) {
	.jmdhab-container {
	  padding: 0 15px;
	}
  
	.jmdhab-mini-item {
	  flex: 0 0 140px;
	}
  
	.jmdhab-mini-card {
	  padding: 15px 10px;
	}
  
	.jmdhab-mini-icon {
	  width: 40px;
	  height: 40px;
	}
  
	.jmdhab-mini-icon svg {
	  width: 20px;
	  height: 20px;
	}
  }