/* =====================================
   HERO SECTION - Clean & Modern Design
   ===================================== */

/* Hero Section Container */
.intro-section {
	min-height: 100vh;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	color: white;
	overflow: hidden;
}

.intro-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
	            radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.intro-section .container-fluid {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.intro-section .row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-items: center;
	gap: 60px;
	width: 100%;
	max-width: 100%;
}

/* Hero Content Column */
.intro-section .col-lg-6:first-child {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	order: 1;
}

/* Hero Image Column */
.intro-section .col-lg-6:last-child {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	order: 2;
}

/* Hero Content */
.hero-content {
	padding: 40px 0;
	flex: 0 1 auto;
	min-width: 0;
	max-width: 520px;
	animation: fadeInLeft 0.8s ease-out;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.hero-content-inner {
	width: 100%;
	text-align: left;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 18px;
	line-height: 1.2;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	color: #ffffff;
}

.hero-subtitle {
	font-size: 1.35rem;
	font-weight: 500;
	margin-bottom: 22px;
	opacity: 0.98;
	font-style: italic;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.95);
}

.hero-description {
	font-size: 1rem;
	margin-bottom: 32px;
	opacity: 0.95;
	line-height: 1.8;
	letter-spacing: 0.3px;
	color: rgba(255, 255, 255, 0.92);
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Hero Buttons */
.hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.hero-buttons .btn {
	padding: 14px 36px;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	white-space: nowrap;
}

.hero-buttons .btn i {
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
	transform: scale(1.1);
}

.hero-buttons .btn-primary {
	background-color: white;
	color: #667eea;
}

.hero-buttons .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	background-color: #f8f9fa;
}

.hero-buttons .btn-primary:active {
	transform: translateY(-1px);
}

.hero-buttons .btn-secondary {
	background-color: transparent;
	color: white;
	border: 2px solid white;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Image */
.hero-image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
	flex: 0 1 auto;
	min-width: 0;
	max-width: 520px;
	animation: fadeInRight 0.8s ease-out;
	margin: 0 auto;
	width: 100%;
	height: 100%;
}

.hero-image {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: white;
	z-index: 2;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: bounceDown 2s infinite;
}

.scroll-indicator:hover {
	opacity: 0.7;
}

.scroll-indicator span {
	display: block;
	font-size: 0.9rem;
	margin-bottom: 12px;
	opacity: 0.85;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.mouse-icon {
	width: 28px;
	height: 44px;
	border: 2px solid white;
	border-radius: 14px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 10px;
}

.wheel {
	width: 3px;
	height: 8px;
	background: white;
	border-radius: 50%;
	animation: scroll-wheel 1.5s infinite;
}

@keyframes bounceDown {
	0%, 100% {
		opacity: 0.7;
	}
	50% {
		opacity: 1;
	}
}

@keyframes scroll-wheel {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(12px);
	}
}

/* =====================================
   SLIDER SECTION
   ===================================== */

.slider-section {
	position: relative;
	height: 500px;
	background: #000;
	overflow: hidden;
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.slide.active {
	opacity: 1;
	z-index: 10;
}

.slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 1;
}

.slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: white;
	z-index: 2;
	text-align: center;
}

.slide-caption h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.slide-caption p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin: 0;
}

/* Slider Controls */
.slider-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	z-index: 20;
	border-radius: 50%;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-control:hover {
	background: rgba(255, 255, 255, 0.4);
	transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
	left: 20px;
}

.slider-control.next {
	right: 20px;
}

/* Slider Indicators */
.slider-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 20;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.indicator.active {
		background: white;
		width: 30px;
		border-radius: 6px;
	}

	.indicator:hover {
		background: rgba(255, 255, 255, 0.7);
	}

/* =====================================
   SHOWCASE SLIDER (Inside Hero Section)
   ===================================== */

.showcase-slider-section {
	position: relative;
	width: 100%;
	padding: 30px 0 40px 0;
	background: rgba(0, 0, 0, 0.08);
	margin-top: 40px;
}

.showcase-slider-container {
	position: relative;
	width: 100%;
	max-width: 1100px;
	height: 350px;
	margin: 0 auto;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.showcase-slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.showcase-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.showcase-slide.active {
	opacity: 1;
	z-index: 10;
}

.showcase-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Showcase Controls */
.showcase-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.3);
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	z-index: 20;
	border-radius: 50%;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
}

.showcase-control:hover {
	background: rgba(255, 255, 255, 0.5);
	transform: translateY(-50%) scale(1.1);
}

.showcase-control.prev {
	left: 20px;
}

.showcase-control.next {
	right: 20px;
}

/* Showcase Indicators */
.showcase-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 20;
}

.showcase-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.showcase-indicator.active {
	background: white;
	width: 30px;
	border-radius: 6px;
}

.showcase-indicator:hover {
	background: rgba(255, 255, 255, 0.7);
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */@media (max-width: 992px) {
	.intro-section {
		min-height: auto;
		padding: 45px 20px;
	}

	.intro-section .container-fluid {
		max-width: 100%;
	}

	.intro-section .row {
		grid-template-columns: 1fr;
		gap: 35px;
		justify-items: center;
	}

	.intro-section .col-lg-6:first-child,
	.intro-section .col-lg-6:last-child {
		order: auto;
		width: 100%;
	}

	.hero-title {
		font-size: 2.8rem;
		margin-bottom: 15px;
		text-align: center;
	}

	.hero-subtitle {
		font-size: 1.15rem;
		margin-bottom: 18px;
		text-align: center;
	}

	.hero-description {
		font-size: 0.95rem;
		margin-bottom: 28px;
		text-align: center;
		line-height: 1.7;
	}

	.hero-buttons {
		flex-direction: column;
		margin-top: 28px;
		gap: 14px;
		justify-content: center;
	}

	.hero-buttons .btn {
		width: 100%;
		justify-content: center;
		padding: 13px 30px;
		box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	}

	.hero-content {
		padding: 30px 25px;
		max-width: 100%;
		text-align: center;
		align-items: center;
	}

	.hero-content-inner {
		width: 100%;
		text-align: center;
	}

	.hero-image-wrapper {
		padding: 20px 0;
		max-width: 100%;
		width: 100%;
	}

	.hero-slider-container {
		height: 350px;
		max-width: 100%;
	}

	.hero-slider-control {
		width: 42px;
		height: 42px;
		font-size: 19px;
	}

	.showcase-slider-section {
		padding: 28px 0 35px 0;
		margin-top: 35px;
	}

	.showcase-slider-container {
		height: 300px;
		max-width: 100%;
		margin: 0 20px;
		border-radius: 18px;
	}

	.scroll-indicator {
		bottom: 25px;
	}
}

@media (max-width: 768px) {
	.intro-section {
		min-height: auto;
		padding: 40px 15px;
	}

	.intro-section .container-fluid {
		padding: 0 10px;
	}

	.intro-section .row {
		gap: 25px;
		grid-template-columns: 1fr;
		flex-wrap: wrap;
	}

	.intro-section .col-lg-6:first-child,
	.intro-section .col-lg-6:last-child {
		order: auto;
		width: 100%;
	}

	.hero-title {
		font-size: 2rem;
		margin-bottom: 12px;
		text-align: center;
	}

	.hero-subtitle {
		font-size: 0.95rem;
		margin-bottom: 12px;
		text-align: center;
	}

	.hero-description {
		font-size: 0.9rem;
		margin-bottom: 20px;
		line-height: 1.6;
		text-align: center;
	}

	.hero-buttons {
		margin-top: 20px;
		flex-direction: column;
		gap: 12px;
		justify-content: center;
	}

	.hero-buttons .btn {
		padding: 12px 24px;
		font-size: 0.95rem;
		width: 100%;
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	}

	.hero-content {
		padding: 30px 20px;
		max-width: 100%;
		text-align: center;
		align-items: center;
	}

	.hero-content-inner {
		width: 100%;
		text-align: center;
	}

	.hero-image-wrapper {
		padding: 20px 0;
		max-width: 100%;
		width: 100%;
	}

	.hero-slider-container {
		height: 320px;
		max-width: 100%;
		border-radius: 15px;
	}

	.hero-slider-wrapper {
		width: 100%;
		height: 100%;
	}

	.hero-slide-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.showcase-slider-section {
		display: none;
	}

	.showcase-slider-container {
		display: none;
	}

	.hero-slider-control {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.hero-slider-control.prev {
		left: 10px;
	}

	.hero-slider-control.next {
		right: 10px;
	}

	.hero-indicator {
		width: 8px;
		height: 8px;
	}

	.hero-indicator.active {
		width: 24px;
	}

	.scroll-indicator {
		bottom: 20px;
	}

	.scroll-indicator span {
		font-size: 0.8rem;
	}

	.slider-section {
		height: 300px;
	}

	.slider-control {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.slider-control.prev {
		left: 10px;
	}

	.slider-control.next {
		right: 10px;
	}

	.slide-caption {
		padding: 15px;
	}

	.slide-caption h3 {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}

	.slide-caption p {
		font-size: 0.85rem;
	}
}

@media (max-width: 576px) {
	.intro-section {
		padding: 35px 16px;
		gap: 20px;
	}

	.intro-section .container-fluid {
		padding: 0;
	}

	.intro-section .row {
		gap: 20px;
		grid-template-columns: 1fr;
	}

	.intro-section .col-lg-6:first-child,
	.intro-section .col-lg-6:last-child {
		order: auto;
		width: 100%;
	}

	.hero-title {
		font-size: 1.5rem;
		margin-bottom: 12px;
		text-align: center;
		line-height: 1.3;
	}

	.hero-subtitle {
		font-size: 0.9rem;
		margin-bottom: 12px;
		text-align: center;
	}

	.hero-description {
		font-size: 0.85rem;
		line-height: 1.6;
		margin-bottom: 20px;
		text-align: center;
	}

	.hero-buttons {
		margin-top: 20px;
		flex-direction: column;
		gap: 12px;
		justify-content: center;
	}

	.hero-buttons .btn {
		padding: 12px 24px;
		font-size: 0.9rem;
		width: 100%;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
		border-radius: 8px;
	}

	.hero-buttons .btn i {
		font-size: 1.05rem;
	}

	.hero-content {
		padding: 25px 16px;
		max-width: 100%;
		text-align: center;
		align-items: center;
	}

	.hero-content-inner {
		width: 100%;
		text-align: center;
	}

	.hero-image-wrapper {
		padding: 18px 8px;
		max-width: 100%;
		width: 100%;
	}

	.hero-slider-container {
		height: 280px;
		max-width: 100%;
		border-radius: 12px;
		box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
	}

	.hero-slider-control {
		width: 36px;
		height: 36px;
		font-size: 16px;
		left: 8px;
		right: 8px;
	}

	.slider-section {
		height: 250px;
	}

	.slider-control {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.slide-caption h3 {
		font-size: 1rem;
	}

	.slide-caption p {
		font-size: 0.8rem;
	}

	.scroll-indicator {
		bottom: 15px;
		font-size: 0.75rem;
	}

	.scroll-indicator span {
		font-size: 0.75rem;
		margin-bottom: 10px;
	}

	.mouse-icon {
		width: 24px;
		height: 40px;
	}
}

/* Hero Slider Container */
.hero-slider-container {
	position: relative;
	width: 100%;
	max-width: 520px;
	height: 420px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	background: white;
	margin: 0 auto;
}

.hero-slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.hero-slide.active {
	opacity: 1;
	z-index: 10;
}

.hero-slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Hero Slider Controls */
.hero-slider-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.25);
	border: none;
	color: white;
	font-size: 22px;
	cursor: pointer;
	z-index: 20;
	border-radius: 50%;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
}

.hero-slider-control:hover {
	background: rgba(255, 255, 255, 0.45);
	transform: translateY(-50%) scale(1.1);
}

.hero-slider-control.prev {
	left: 15px;
}

.hero-slider-control.next {
	right: 15px;
}

/* Hero Slider Indicators */
.hero-slider-indicators {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 20;
}

.hero-indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.hero-indicator.active {
	background: white;
	width: 28px;
	border-radius: 5px;
}

.hero-indicator:hover {
	background: rgba(255, 255, 255, 0.8);
}

/* Responsive Hero Slider */
@media (max-width: 992px) {
	.hero-slider-container {
		height: 300px;
	}

	.hero-slider-control {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.hero-slider-control.prev {
		left: 10px;
	}

	.hero-slider-control.next {
		right: 10px;
	}
}

@media (max-width: 768px) {
	.hero-slider-container {
		height: 250px;
		border-radius: 15px;
	}

	.hero-slider-control {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.hero-indicator {
		width: 8px;
		height: 8px;
	}

	.hero-indicator.active {
		width: 24px;
	}
}
