/**
 * Scstukta Theme - Main Stylesheet
 * Professional Indian Color Palette
 */

/* ============================================
   Color Variables
   ============================================ */
:root {
	--color-saffron: #FF9933;
	--color-white: #FFFFFF;
	--color-green: #138808;
	--color-blue: #0A3D62;
	--color-dark-blue: #0A3D62;
	--color-light-gray: #F5F5F5;
	--color-dark-gray: #333333;
	--color-text: #333333;
	--color-text-light: #666666;
	--transition: all 0.3s ease;
}

/* ============================================
   Base Styles
   ============================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	color: var(--color-text);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.hindi-text {
	font-family: 'Noto Sans Devanagari', sans-serif;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--color-blue);
	margin-bottom: 10px;
}

.section-title p {
	color: var(--color-text-light);
	font-size: 1.1rem;
}

/* ============================================
   Header Styles
   ============================================ */
.site-header {
	background: var(--color-white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
}

.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.site-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.site-logo img {
	max-height: 60px;
	width: auto;
}

.site-logo-text {
	margin-left: 15px;
}

.site-logo-text h1 {
	font-size: 1.5rem;
	color: var(--color-blue);
	margin: 0;
	font-weight: 700;
}

.site-logo-text p {
	font-size: 0.9rem;
	color: var(--color-text-light);
	margin: 0;
}

/* Navigation */
.main-navigation ul {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.main-navigation a {
	text-decoration: none;
	color: var(--color-text);
	font-weight: 500;
	font-size: 1rem;
	transition: var(--transition);
	position: relative;
	padding: 5px 0;
}

.main-navigation a:hover {
	color: var(--color-saffron);
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-saffron);
	transition: var(--transition);
}

.main-navigation a:hover::after {
	width: 100%;
}

.cta-button {
	background: var(--color-saffron);
	color: var(--color-white);
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	display: inline-block;
}

.cta-button:hover {
	background: #e6891f;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--color-blue);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
	position: relative;
	height: 600px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(10, 61, 98, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.hero-badge {
	display: inline-block;
	background: var(--color-saffron);
	color: var(--color-white);
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.hero-title {
	font-size: 3.5rem;
	color: var(--color-white);
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
	max-width: 600px;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-buttons .cta-button {
	font-size: 1.1rem;
	padding: 15px 40px;
}

.hero-buttons .btn-secondary {
	background: transparent;
	border: 2px solid var(--color-white);
	color: var(--color-white);
}

.hero-buttons .btn-secondary:hover {
	background: var(--color-white);
	color: var(--color-blue);
}

/* ============================================
   News Ticker
   ============================================ */
.news-ticker {
	background: var(--color-blue);
	color: var(--color-white);
	padding: 15px 0;
	overflow: hidden;
	position: relative;
}

.ticker-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ticker-label {
	background: var(--color-saffron);
	padding: 8px 20px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ticker-content {
	flex: 1;
	overflow: hidden;
	position: relative;
	height: 30px;
}

.ticker-text {
	position: absolute;
	white-space: nowrap;
	animation: scroll-ticker 30s linear infinite;
	font-size: 1rem;
	padding-left: 20px;
}

.ticker-controls {
	display: flex;
	gap: 10px;
}

.ticker-arrow {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: var(--color-white);
	padding: 5px 15px;
	cursor: pointer;
	border-radius: 5px;
	transition: var(--transition);
}

.ticker-arrow:hover {
	background: rgba(255, 255, 255, 0.3);
}

@keyframes scroll-ticker {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

/* ============================================
   Quick Links Section
   ============================================ */
.quick-links {
	background: var(--color-light-gray);
	padding: 60px 0;
}

.quick-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.quick-link-card {
	background: var(--color-white);
	padding: 40px 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: var(--transition);
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
}

.quick-link-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.quick-link-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: bold;
	color: var(--color-white);
}

.quick-link-card:nth-child(1) .quick-link-icon {
	background: var(--color-saffron);
}

.quick-link-card:nth-child(2) .quick-link-icon {
	background: var(--color-blue);
}

.quick-link-card:nth-child(3) .quick-link-icon {
	background: var(--color-green);
}

.quick-link-card h3 {
	font-size: 1.5rem;
	color: var(--color-blue);
	margin-bottom: 10px;
}

.quick-link-card p {
	color: var(--color-text-light);
	font-size: 1rem;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
	background: var(--color-white);
}

.about-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.about-content h2 {
	font-size: 2.5rem;
	color: var(--color-blue);
	margin-bottom: 20px;
}

.about-content .section-badge {
	display: inline-block;
	color: var(--color-saffron);
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 1rem;
}

.about-content p {
	font-size: 1.1rem;
	color: var(--color-text);
	line-height: 1.8;
	margin-bottom: 25px;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin: 30px 0;
}

.about-feature {
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-feature-icon {
	width: 25px;
	height: 25px;
	background: var(--color-saffron);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 0.9rem;
	flex-shrink: 0;
}

.about-feature span {
	color: var(--color-text);
	font-weight: 500;
}

.about-image {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.about-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	padding: 30px;
	color: var(--color-white);
}

.about-image-overlay h3 {
	color: var(--color-white);
	font-size: 2rem;
	margin: 0;
}

/* ============================================
   Leadership Section
   ============================================ */
.leadership-section {
	background: var(--color-light-gray);
}

.leadership-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 50px;
	padding: 0 20px;
}

.leadership-main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto 60px;
	padding: 0 20px;
}

.leader-card {
	background: var(--color-white);
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: var(--transition);
}

.leader-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.leader-photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto 20px;
	object-fit: cover;
	border: 5px solid var(--color-saffron);
}

.leader-name {
	font-size: 1.5rem;
	color: var(--color-blue);
	margin-bottom: 10px;
}

.leader-title {
	color: var(--color-saffron);
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 1rem;
}

.leader-bio {
	color: var(--color-text-light);
	line-height: 1.6;
	margin-bottom: 20px;
}

.leader-social {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.leader-social a {
	color: var(--color-blue);
	font-size: 1.2rem;
	transition: var(--transition);
	text-decoration: none;
}

.leader-social a:hover {
	color: var(--color-saffron);
	transform: scale(1.2);
}

.leadership-team {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.leadership-team h3 {
	text-align: center;
	font-size: 2rem;
	color: var(--color-blue);
	margin-bottom: 40px;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.team-member {
	background: var(--color-white);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: var(--transition);
}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-member-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 15px;
	object-fit: cover;
	border: 3px solid var(--color-blue);
}

.team-member-name {
	font-size: 1.1rem;
	color: var(--color-blue);
	margin-bottom: 5px;
}

.team-member-role {
	font-size: 0.9rem;
	color: var(--color-text-light);
}

/* Provincial Team Section Image */
.provincial-section-image {
	text-align: center;
	margin-bottom: 30px;
}

.provincial-section-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.leadership-team h3 .english-text {
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	color: var(--color-text-light);
	font-weight: 400;
}

/* Team Grid Layouts */
.team-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.team-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.team-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.team-grid-6 {
	grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1024px) {
	.team-grid-6 {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.team-grid-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.team-grid-6,
	.team-grid-4,
	.team-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.team-grid-2 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.team-grid-6,
	.team-grid-4,
	.team-grid-3,
	.team-grid-2 {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   Events Section
   ============================================ */
.events-section {
	background: var(--color-white);
}

.events-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.events-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.event-item {
	display: flex;
	gap: 20px;
	padding: 20px;
	background: var(--color-light-gray);
	border-radius: 10px;
	transition: var(--transition);
}

.event-item:hover {
	background: var(--color-white);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transform: translateX(5px);
}

.event-date {
	background: var(--color-blue);
	color: var(--color-white);
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	min-width: 80px;
}

.event-date-month {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
}

.event-date-day {
	font-size: 1.8rem;
	font-weight: 700;
}

.event-details h4 {
	color: var(--color-blue);
	margin-bottom: 8px;
	font-size: 1.2rem;
}

.event-details p {
	color: var(--color-text-light);
	margin-bottom: 10px;
	font-size: 0.95rem;
}

.event-link {
	color: var(--color-saffron);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.event-link:hover {
	color: var(--color-blue);
}

.events-featured {
	background: var(--color-blue);
	color: var(--color-white);
	padding: 40px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.events-featured::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 153, 51, 0.1) 0%, transparent 70%);
}

.events-featured-content {
	position: relative;
	z-index: 1;
}

.featured-badge {
	background: var(--color-saffron);
	color: var(--color-white);
	padding: 5px 15px;
	border-radius: 20px;
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.events-featured h3 {
	color: var(--color-white);
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.events-featured p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	margin-bottom: 25px;
}

.events-featured .cta-button {
	background: var(--color-white);
	color: var(--color-blue);
}

.events-featured .cta-button:hover {
	background: var(--color-saffron);
	color: var(--color-white);
}

.view-all-events {
	text-align: center;
	margin-top: 40px;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
	background: var(--color-light-gray);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.gallery-item {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	cursor: pointer;
	transition: var(--transition);
	aspect-ratio: 4/3;
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 61, 98, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay-icon {
	color: var(--color-white);
	font-size: 2.5rem;
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.lightbox.active {
	display: flex;
}

.lightbox-content {
	max-width: 90%;
	max-height: 90%;
	position: relative;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: var(--color-white);
	font-size: 2rem;
	cursor: pointer;
	background: none;
	border: none;
	padding: 10px;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: var(--color-white);
	font-size: 2rem;
	padding: 15px 20px;
	cursor: pointer;
	border-radius: 5px;
	transition: var(--transition);
}

.lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
	background: var(--color-blue);
	color: var(--color-white);
	padding: 60px 0 20px;
}

.footer-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	color: var(--color-white);
	font-size: 1.3rem;
	margin-bottom: 20px;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	max-height: 50px;
	width: auto;
}

.footer-column p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 15px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	text-decoration: none;
	transition: var(--transition);
	font-size: 1.2rem;
}

.footer-social a:hover {
	background: var(--color-saffron);
	transform: translateY(-3px);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--color-saffron);
	padding-left: 5px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.8);
}

.footer-contact-icon {
	font-size: 1.2rem;
	color: var(--color-saffron);
	flex-shrink: 0;
	margin-top: 3px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	margin: 0 10px;
}

.footer-bottom a:hover {
	color: var(--color-saffron);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
	
	.main-navigation {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-white);
		box-shadow: 0 5px 15px rgba(0,0,0,0.1);
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}
	
	.main-navigation.active {
		display: block;
	}
	
	.main-navigation ul {
		flex-direction: column;
		padding: 20px;
		gap: 15px;
		align-items: stretch;
	}
	
	.main-navigation ul li {
		width: 100%;
	}
	
	.main-navigation ul li a.cta-button {
		display: block;
		text-align: center;
		width: 100%;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.about-wrapper,
	.events-wrapper {
		grid-template-columns: 1fr;
	}
	
	.leadership-main {
		grid-template-columns: 1fr;
	}
	
	.team-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}
	
	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
	
	.section {
		padding: 50px 0;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
	
	.ticker-wrapper {
		flex-wrap: wrap;
	}
	
	.ticker-label {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-buttons {
		flex-direction: column;
	}
	
	.hero-buttons .cta-button {
		width: 100%;
		text-align: center;
	}
	
	.quick-links-grid {
		grid-template-columns: 1fr;
	}
	
	.about-features {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* ============================================
   Form Styles
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	font-family: inherit;
	transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-saffron);
	box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

input.error,
textarea.error {
	border-color: #dc3545;
}

label {
	display: block;
	margin-bottom: 8px;
	color: var(--color-text);
	font-weight: 500;
}

/* Page Header Styles */
.page-header {
	background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-dark-blue) 100%);
	padding: 100px 0 60px;
	color: white;
	text-align: center;
}

.page-header h1 {
	color: white;
	margin-bottom: 20px;
}

/* Additional Utility Classes */
.text-center {
	text-align: center;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

