.elementor-3186 .elementor-element.elementor-element-9c5726c{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-3186 .elementor-element.elementor-element-6959656 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:35px;font-weight:600;color:#222222;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for html, class: .elementor-element-5fda96d */.slider-container {
			position: relative;
			overflow: hidden;
			border-radius: 16px;
		}

		.doctors-slider {
			display: flex;
			transition: transform 0.5s ease;
		}

		.doctors-slide {
			min-width: 100%;
			display: flex;
			gap: 25px;
			align-items: stretch;
		}

		.doctor-card {
			flex: 0 0 calc(25% - 18.75px);
			background: white;
			border-radius: 12px;
			overflow: hidden;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
			transition: all 0.3s ease;
			border: 1px solid #e0e0e0;
			position: relative;
		}

		.doctor-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 8px 25px rgba(223, 57, 58, 0.15);
		}

		.doctor-image-container {
			position: relative;
			width: 100%;
			height: 280px;
			overflow: hidden;
		}

		.doctor-image {
			width: 100%;
			height: 100%;
			object-fit: cover;
			background: #f8f9fa;
		}

		.doctor-logo {
			position: absolute;
			bottom: 10px;
			right: 10px;
			width: 80px;
			height: 80px;
			background: rgba(255, 255, 255, 0.95);
			border-radius: 12px;
			padding: 8px;
			box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
		}

		.doctor-logo img {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}

		.doctor-content {
			padding: 20px;
		}

		.doctor-specialty {
			background: linear-gradient(45deg, #DF393A, #e55a5b);
			color: white;
			padding: 4px 10px;
			border-radius: 15px;
			font-size: 11px;
			font-weight: 600;
			display: inline-block;
			margin-bottom: 12px;
			text-transform: uppercase;
			letter-spacing: 0.3px;
		}

		.doctor-name {
			font-size: 16px;
			font-weight: 600;
			color: #333;
			margin-bottom: 8px;
			line-height: 1.3;
			text-transform: capitalize;
		}

		.doctor-experience {
			display: flex;
			align-items: center;
			gap: 6px;
			color: #666;
			font-size: 13px;
			margin-bottom: 15px;
		}

		.experience-icon {
			color: #DF393A;
			font-size: 14px;
		}

		.doctor-actions {
			display: flex;
			gap: 8px;
		}

		.btn-appointment {
			flex: 1;
			background: linear-gradient(45deg, #DF393A, #e55a5b);
			color: white;
			padding: 10px 16px;
			border: none;
			border-radius: 6px;
			font-size: 12px;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
			text-decoration: none;
			text-align: center;
		}

		.btn-appointment:hover {
			transform: translateY(-1px);
			box-shadow: 0 3px 10px rgba(223, 57, 58, 0.3);
		}

		.btn-info {
			background: rgba(223, 57, 58, 0.1)!important;
			color: #DF393A !important;
			padding: 10px;
			border: none;
			border-radius: 6px;
			cursor: pointer;
			transition: all 0.3s ease;
			width: 36px;
			height: 36px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 14px;
		}

		.btn-info:hover {
			background: rgba(223, 57, 58, 0.2);
		}

		.slider-controls {
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 20px;
			margin-top: 30px;
		}

		.slider-btn {
			background: white;
			border: 2px solid #DF393A;
			color: #DF393A;
			width: 45px;
			height: 45px;
			border-radius: 50%;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 18px;
			transition: all 0.3s ease;
			font-weight: bold;
		}

		.slider-btn:hover {
			background: #DF393A;
			color: white;
			transform: scale(1.1);
		}

		.slider-btn:disabled {
			opacity: 0.3;
			cursor: not-allowed;
			transform: none;
		}

		.slider-btn:disabled:hover {
			background: white;
			color: #DF393A;
		}

		.slider-dots {
			display: flex;
			gap: 8px;
		}

		.slider-dot {
			width: 12px;
			height: 12px;
			border-radius: 50%;
			background: #ddd;
			cursor: pointer;
			transition: all 0.3s ease;
		}

		.slider-dot.active {
			background: #DF393A;
			transform: scale(1.2);
		}

		@media (max-width: 1024px) {
			.doctor-card {
				flex: 0 0 calc(33.333% - 16.67px);
			}

			.slider-container {
				padding: 20px;
			}
		}

		@media (max-width: 768px) {
			.doctors-slide {
				gap: 15px;
			}

			.doctor-card {
				flex: 0 0 calc(50% - 7.5px);
			}

			.doctors-title {
				font-size: 28px;
			}

			.doctors-description {
				font-size: 16px;
			}

			.doctor-content {
				padding: 15px;
			}

			.doctor-image-container {
				height: 200px;
			}
			.doctor-logo {
				width: 60px;
				height: 60px;
			}

			.slider-container {
				padding: 15px;
			}

			.doctor-name {
				font-size: 14px;
				line-height: 1.2;
			}

			.doctor-specialty {
				font-size: 10px;
				padding: 3px 8px;
			}

			.doctor-experience {
				font-size: 12px;
				margin-bottom: 12px;
			}

			.btn-appointment {
				font-size: 11px;
				padding: 8px 12px;
			}

			.btn-info {
				width: 32px;
				height: 32px;
				font-size: 12px;
			}
		}

		@media (max-width: 480px) {
			.doctors-slide {
				gap: 12px;
			}

			.doctor-card {
				flex: 0 0 calc(50% - 6px);
			}

			.slider-container {
				padding: 12px;
			}

			.doctor-image-container {
				height: 180px;
			}

			.doctor-content {
				padding: 12px;
			}

			.doctor-logo {
				width: 50px;
				height: 50px;
				bottom: 8px;
				right: 8px;
			}
		}/* End custom CSS */