
/* ============================================
HERO SECTION STARTS
============================================ */
.hero {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--text-light);
	padding: var(--spacing-xl) 0;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
	animation: float 20s infinite linear;
}

@keyframes float {
	from { transform: translateY(0); }
	to { transform: translateY(-100px); }
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-lg);
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-text h1 {
	font-size: 3.5rem;
	font-family: var(--font-heading);
	margin-bottom: var(--spacing-sm);
	line-height: 1.2;
}

.hero-text p {
	font-size: 1.2rem;
	margin-bottom: var(--spacing-md);
	opacity: 0.9;
}

.btn {
	padding: var(--spacing-sm) var(--spacing-md);
	border-radius: var(--radius-lg);
	font-weight: 700;
	display: inline-block;
	transition: var(--transition-normal);
	font-size: 1.05rem;
	position: relative;
	overflow: hidden;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.5s;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	border: none;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-primary:active {
	transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #fda085 100%);
	color: white;
	border: none;
	margin-left: var(--spacing-sm);
	box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-secondary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(245, 87, 108, 0.6);
}

.btn-secondary:active {
	transform: translateY(-1px) scale(1.01);
}

.hero-image {
	text-align: center;
	position: relative;
}

.carousel {
	width: 100%;
	height: 400px;
	border-radius: var(--radius-xl);
	overflow: hidden;
	position: relative;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	height: 100%;
}

.carousel-slide {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	font-size: 3rem;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.9);
	color: var(--primary-color);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	font-size: 1.2rem;
}

.carousel-btn:hover {
	background: white;
}

.carousel-btn.prev {
	left: 10px;
}

.carousel-btn.next {
	right: 10px;
}

.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	transition: var(--transition-fast);
}

.carousel-dot.active {
	background: white;
	width: 30px;
	border-radius: 5px;
}
/* ============================================
HERO SECTION ENDS
============================================ */


/* ============================================
PAGE HEADER STARTS
============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
/* ============================================
PAGE HEADER ENDS
============================================ */
