/* Hero Slider Pro - Frontend Styles */

.hsp-slider-wrapper {
	position: relative;
	width: 100%;
		height: var(--hsp-slider-height, 500px);
	max-width: 100%;
	min-height: 320px;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hsp-slider {
	position: relative;
	width: 100%;
	height: 100%;
	background: #000;
}

.hsp-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

.hsp-slide.active {
	opacity: 1;
}

/* Fade Animation */
.hsp-animation-fade .hsp-slide {
	animation: none;
}

.hsp-animation-fade .hsp-slide.active {
	animation: none;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Slide Animation */
.hsp-animation-slide .hsp-slide {
	animation: none;
}

.hsp-animation-slide .hsp-slide.active {
	animation: none;
}

@keyframes slideIn {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

/* Overlay */
.hsp-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

/* Content */
.hsp-content {
    position: absolute;
    top: 40px;
    left: 50%;
    text-align: left;
    z-index: 2;
    width: 100%;
    max-width: 1340px;
    transform: translateX(-50%);
    padding: 0px 20px;
}

@keyframes contentFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.hsp-title {
	font-size: clamp(24px, 4.5vw, 48px);
	font-weight: 700;
	margin: 0 0 15px 0;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    overflow-wrap: anywhere;
	word-break: break-word;
	animation: none;
}

@keyframes titleSlideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.hsp-preheading {
	font-size: clamp(11px, 1.3vw, 14px);
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0 0 12px 0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	animation: titleSlideUp 0.8s ease-out 0s backwards;
}
.hsp-description {
	font-size: clamp(12px, 2vw, 18px);
	margin: 0 0 25px 0;
	color: #f0f0f0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    	overflow-wrap: anywhere;
	word-break: break-word;
	animation: titleSlideUp 0.8s ease-out 0.4s backwards;
}

.hsp-cta-btn {
	display: inline-block;
	padding: 12px 32px;
	background-color: #e74c3c;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.hsp-cta-btn-1 {
	animation: titleSlideUp 0.8s ease-out 0.6s backwards;
}

.hsp-cta-btn-2 {
	animation: titleSlideUp 0.8s ease-out 0.7s backwards;
}

.hsp-buttons-group {
	margin-top: 25px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
    align-items: center;
}

.hsp-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hsp-cta-btn:active {
	transform: translateY(0);
}

/* Navigation Buttons */
.hsp-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.7);
	border: none;
	color: #000;
	font-size: 32px;
	padding: 10px 15px;
	cursor: pointer;
	z-index: 3;
	transition: all 0.3s ease;
	border-radius: 4px;
	line-height: 1;
}

.hsp-nav-btn:hover {
	background: rgba(255, 255, 255, 0.95);
	color: #000;
}

.hsp-prev {
	left: 15px;
}

.hsp-next {
	right: 15px;
}

/* Pagination Dots */
.hsp-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 3;
}

.hsp-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.hsp-dot:hover {
	background: rgba(255, 255, 255, 0.8);
	transform: scale(1.15);
}

.hsp-dot.active {
	background: #fff;
	transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
.hsp-slider-wrapper {
		height: 420px;
		min-height: 300px;
	}

	.hsp-content {
		top: 12%;
		left: 6%;
        right: 12px;
		transform: none;
		width: auto;
		max-width: none;
        text-align: left;
		padding: 0 12px;
	}
	.hsp-title {
		font-size: clamp(18px, 4.2vw, 24px);
		line-height: 1.1;
		margin-bottom: 10px;
	}

	.hsp-preheading {
		font-size: 12px;
		letter-spacing: 1px;
		margin-bottom: 8px;
	}

	.hsp-description {
		font-size: 13px;
		margin-bottom: 15px;
	}
    .hsp-buttons-group {
		gap: 10px;
	}

	.hsp-cta-btn {
		padding: 10px 24px;
		font-size: 12px;
	}

	.hsp-buttons-group {
		flex-direction: column;
		width: 100%;
	}

	.hsp-nav-btn {
		font-size: 24px;
		padding: 8px 12px;
	}

	.hsp-dots {
		bottom: 15px;
		gap: 8px;
	}

	.hsp-dot {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 480px) {
	.hsp-slider-wrapper {
		height: 360px;
		min-height: 280px;
	}

	.hsp-content {
		top: 10%;
		left: 16px;
		right: 16px;
		transform: none;
		width: auto;
		max-width: none;
        text-align: left;
		padding: 0 8px;
	}

	.hsp-title {
		font-size: clamp(16px, 5vw, 22px);
		line-height: 1.08;
		margin-bottom: 8px;
	}

	.hsp-preheading {
		font-size: 10px;
		letter-spacing: 0.5px;
		margin-bottom: 6px;
	}

	.hsp-description {
		font-size: 11px;
		margin-bottom: 12px;
	}

	.hsp-cta-btn {
		padding: 9px 16px;
		font-size: 11px;
        width: 100%;
		max-width: 220px;
	}

	.hsp-buttons-group {
		gap: 8px;
        width: 100%;
		flex-direction: column;
	}

	.hsp-nav-btn {
		font-size: 20px;
		padding: 6px 10px;
		left: 5px;
		right: auto;
	}

	.hsp-next {
		left: auto;
		right: 5px;
	}

}