* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f9fafb;
}

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

/* Header Styles */
header {
	background: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.logo img {
	width: 70px;
	height: 70px;
}
.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav {
	display: flex;
	gap: 30px;
}

nav a {
	text-decoration: none;
	color: #4b5563;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.3s;
}

nav a:hover,
nav a.active {
	color: #2563eb;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background-image: linear-gradient(135deg, rgba(30, 58, 138, .75), rgba(30, 64, 175, .75)), url(https://iiafjobs.com/wp-content/uploads/2026/01/ChatGPT-Image-Jan-5-2026-10_23_34-PM.png);
	background-position: center, center;
	background-size: cover, cover;
	background-repeat: no-repeat, no-repeat;
	color: white;
	padding: 80px 20px;
	text-align: center;
}

.hero h2 {
	font-size: 48px;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero .highlight {
	color: #66BB6A;
}

.hero p {
	font-size: 20px;
	margin-bottom: 40px;
	color: #bfdbfe;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.btn {
	padding: 15px 35px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s;
	display: inline-block;
}

.btn-primary {
	background: #66BB6A;
	color: white;
}

.btn-primary:hover {
	background: #57a55a;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background: white;
	color: #1e3a8a;
}

.btn-secondary:hover {
	background: #f3f4f6;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stats {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 40px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 36px;
	font-weight: bold;
	color: #66BB6A;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 14px;
	color: #bfdbfe;
}

/* Features Section */
.features {
	padding: 80px 20px;
	background: white;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 40px;
	color: #111827;
	margin-bottom: 15px;
}

.section-header p {
	font-size: 18px;
	color: #6b7280;
}

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

.feature-card {
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s;
}

.feature-card.blue {
	background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.feature-card.green {
	background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

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

.feature-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	font-size: 30px;
}

.feature-card h3 {
	font-size: 20px;
	color: #111827;
	margin-bottom: 10px;
}

.feature-card p {
	color: #4b5563;
	font-size: 14px;
}

/* CTA Section */
.cta {
	background: linear-gradient(135deg, #66BB6A, #2563eb);
	color: white;
	padding: 80px 20px;
	text-align: center;
}

.cta h2 {
	font-size: 40px;
	margin-bottom: 20px;
}

.cta p {
	font-size: 20px;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Jobs Section */
.jobs {
	padding: 80px 20px;
	background: #f9fafb;
}

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

.job-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border-left: 4px solid;
	transition: all 0.3s;
}

.job-card.blue {
	border-left-color: #2563eb;
}

.job-card.green {
	border-left-color: #66BB6A;
}

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

.job-card h3 {
	font-size: 20px;
	color: #111827;
	margin-bottom: 10px;
}

.job-card .company {
	color: #6b7280;
	margin-bottom: 8px;
	font-size: 14px;
}

.job-card .details {
	font-size: 13px;
	color: #9ca3af;
	margin-bottom: 15px;
}

.job-card .apply-btn {
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.job-card.green .apply-btn {
	color: #66BB6A;
}

.job-card .apply-btn:hover {
	text-decoration: underline;
}

/* Resume Form Section */
.resume-form {
	padding: 80px 20px;
	background: white;
}

.form-container {
	max-width: 800px;
	margin: 0 auto;
	background: linear-gradient(135deg, #dbeafe, #dcfce7);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #bfdbfe;
}

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

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
	font-size: 14px;
}

.form-group input,
.form-group select {
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Featured Companies Section */
.featured-companies {
	padding: 80px 20px;
	background: #f1f5f9;
}

.section-tag {
	display: inline-block;
	color: #66BB6A;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.title-underline {
	width: 100px;
	height: 4px;
	background: linear-gradient(to right, #2563eb, #66BB6A);
	margin: 20px auto 0;
	border-radius: 2px;
}

.companies-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.company-card {
	background: white;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.3s;
}

.company-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.company-logo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #e2e8f0;
	margin-bottom: 20px;
	transition: border-color 0.3s;
}

.company-card:hover .company-logo {
	border-color: #2563eb;
}

.company-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.company-card h3 {
	font-size: 20px;
	color: #111827;
	margin-bottom: 8px;
	font-weight: 700;
}

.company-location {
	font-size: 13px;
	color: #64748b;
	margin-bottom: 15px;
}

.company-desc {
	font-size: 14px;
	color: #475569;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}

.company-positions {
	background: #dbeafe;
	color: #1e40af;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 15px;
	width: 100%;
}

.company-btn {
	display: inline-block;
	width: 100%;
	padding: 12px 24px;
	border: 2px solid #bfdbfe;
	color: #2563eb;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 14px;
}

.company-btn:hover {
	background: #2563eb;
	color: white;
	border-color: #2563eb;
}

/* Journey CTA Section */
.journey-cta {
	padding: 100px 20px;
	background: linear-gradient(135deg, #0f172a, #1e293b);
	position: relative;
	overflow: hidden;
}

.abstract-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	opacity: 0.1;
	background: linear-gradient(45deg, transparent 40%, white 40%, white 60%, transparent 60%);
}

.journey-content {
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.journey-text {
	color: white;
}

.journey-text h2 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.2;
}

.journey-features {
	margin-bottom: 40px;
}

.journey-feature {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.check-icon {
	width: 28px;
	height: 28px;
	background: #66BB6A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	flex-shrink: 0;
	font-size: 18px;
}

.journey-feature p {
	font-size: 18px;
	color: #cbd5e1;
	margin: 0;
	padding-top: 3px;
}

.btn-gradient {
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	padding: 18px 40px;
	font-size: 18px;
	font-weight: 700;
	display: inline-block;
	transition: all 0.3s;
}

.btn-gradient:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.journey-image {
	position: relative;
}

.journey-image img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	border: 4px solid rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact {
	padding: 80px 20px;
	background: white;
}

@media (max-width: 968px) {
	.journey-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.journey-text h2 {
		font-size: 36px;
	}

	.journey-feature p {
		font-size: 16px;
	}
}

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

.contact-card {
	text-align: center;
	padding: 40px 30px;
	border-radius: 12px;
	transition: all 0.3s;
}

.contact-card.blue {
	background: #dbeafe;
}

.contact-card.green {
	background: #dcfce7;
}

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

.contact-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	font-size: 30px;
}

.contact-card h3 {
	font-size: 20px;
	color: #111827;
	margin-bottom: 10px;
}

.contact-card p {
	color: #4b5563;
}

/* Footer */
footer {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(30, 64, 175, 0.95)), url(https://images.unsplash.com/photo-1586281380349-632531db7ed4?w=1600&h=600&fit=crop) center / cover;
	color: white;
	padding: 60px 20px 30px;
}

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

.footer_box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.footer-section h3 {
	font-size: 18px;
	margin-bottom: 20px;
}

.footer-section ul {
	list-style: none;
}

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

.footer-section ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-section ul li a:hover {
	color: white;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s;
}

.social-links a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #bfdbfe;
	font-size: 14px;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal.active {
	display: flex;
}

.modal-content {
	background: white;
	padding: 40px;
	border-radius: 16px;
	max-width: 500px;
	width: 100%;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-icon {
	width: 80px;
	height: 80px;
	background: #dcfce7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 40px;
	color: #66BB6A;
}

.modal-content h3 {
	font-size: 28px;
	color: #111827;
	margin-bottom: 15px;
}

.modal-content p {
	color: #6b7280;
	margin-bottom: 10px;
}

.modal-content .note {
	font-size: 14px;
	color: #9ca3af;
	margin-bottom: 30px;
}

.close-modal-btn {
	background: #2563eb;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.close-modal-btn:hover {
	background: #1e40af;
}

/* Responsive */
@media (max-width: 768px) {
	nav {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero h2 {
		font-size: 32px;
	}

	.hero p {
		font-size: 16px;
	}

	.section-header h2 {
		font-size: 28px;
	}

	.form-container {
		padding: 25px;
	}

	.stats {
		padding: 25px;
	}
}

/* Banner Section */
.about-banner {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(30, 64, 175, 0.95)), 
		url('https://iiafjobs.com/wp-content/uploads/2026/01/ChatGPT-Image-Jan-5-2026-10_23_34-PM.png') center/cover;
	color: white;
	padding: 100px 20px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.about-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(102, 187, 106, 0.2), transparent 60%);
}

.banner-content {
	position: relative;
	z-index: 10;
}

.about-banner h1 {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.about-banner .subtitle {
	font-size: 22px;
	color: #bfdbfe;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.breadcrumb {
	display: flex;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	color: #bfdbfe;
}

.breadcrumb a {
	color: #66BB6A;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/* Introduction Section */
.intro-section {
	padding: 80px 20px;
	background: white;
}

.intro-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.intro-text h2 {
	font-size: 42px;
	color: #111827;
	margin-bottom: 20px;
	line-height: 1.2;
}

.intro-text .highlight {
	color: #2563eb;
}

.intro-text p {
	font-size: 18px;
	color: #4b5563;
	line-height: 1.8;
	margin-bottom: 20px;
}

.intro-image {
	position: relative;
}

.intro-image img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-badge {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
	padding: 25px 30px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.intro-badge .number {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 5px;
}

.intro-badge .label {
	font-size: 14px;
	opacity: 0.9;
}

/* Mission Vision Section */
.mission-vision {
	padding: 80px 20px;
	background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
}

.mv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 40px;
}

.mv-card {
	background: white;
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	position: relative;
	overflow: hidden;
}

.mv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(to bottom, #2563eb, #66BB6A);
}

.mv-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #dbeafe, #dcfce7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 35px;
	margin-bottom: 25px;
}

.mv-card h3 {
	font-size: 32px;
	color: #111827;
	margin-bottom: 20px;
}

.mv-card p {
	font-size: 16px;
	color: #4b5563;
	line-height: 1.8;
}

/* Values Section */
.values-section {
	padding: 80px 20px;
	background: white;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 42px;
	color: #111827;
	margin-bottom: 15px;
}

.section-header p {
	font-size: 18px;
	color: #6b7280;
}

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

.value-card {
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	border-color: #2563eb;
}

.value-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	margin: 0 auto 25px;
	color: white;
}

.value-card h3 {
	font-size: 22px;
	color: #111827;
	margin-bottom: 15px;
}

.value-card p {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.7;
}

/* Stats Section */
.stats-section {
	padding: 80px 20px;
	background: linear-gradient(135deg, #1e3a8a, #1e40af);
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.stat-box {
	padding: 30px;
}

.stat-number {
	font-size: 56px;
	font-weight: 700;
	color: #66BB6A;
	margin-bottom: 10px;
	display: block;
}

.stat-label {
	font-size: 18px;
	color: #bfdbfe;
	font-weight: 500;
}

.stat-desc {
	font-size: 14px;
	color: #93c5fd;
	margin-top: 10px;
}

/* Leadership Section */
.leadership-section {
	padding: 80px 20px;
	background: #f9fafb;
}

.leadership-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.leader-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s;
}

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

.leader-image {
	width: 100%;
	height: 350px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, #dbeafe, #dcfce7);
}

.leader-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.leader-info {
	padding: 30px;
	text-align: center;
}

.leader-info h3 {
	font-size: 24px;
	color: #111827;
	margin-bottom: 8px;
}

.leader-title {
	color: #2563eb;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}

.leader-info p {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
	padding: 80px 20px;
	background: white;
}

.timeline {
	max-width: 900px;
	margin: 50px auto 0;
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, #2563eb, #66BB6A);
	transform: translateX(-50%);
}

.timeline-item {
	display: flex;
	margin-bottom: 50px;
	position: relative;
}

.timeline-item:nth-child(odd) {
	flex-direction: row;
}

.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.timeline-content {
	width: 45%;
	background: #f8fafc;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	position: relative;
}

.timeline-date {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
	padding: 12px 25px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 16px;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.timeline-content h3 {
	font-size: 22px;
	color: #111827;
	margin-bottom: 10px;
}

.timeline-content p {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.7;
}

/* CTA Section */
.cta-section {
	padding: 80px 20px;
	background: linear-gradient(135deg, #66BB6A, #2563eb);
	text-align: center;
	color: white;
}

.cta-section h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 20px;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	color: rgba(255,255,255,0.9);
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 15px 35px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s;
	display: inline-block;
}

.btn-white {
	background: white;
	color: #2563eb;
}

.btn-white:hover {
	background: #f3f4f6;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-outline:hover {
	background: white;
	color: #2563eb;
	transform: translateY(-3px);
}

/* Banner Section */
.contact-banner {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(30, 64, 175, 0.95)), 
		url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&h=600&fit=crop') center/cover;
	color: white;
	padding: 100px 20px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 70% 50%, rgba(102, 187, 106, 0.2), transparent 60%);
}

.banner-content {
	position: relative;
	z-index: 10;
}

.contact-banner h1 {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.contact-banner .subtitle {
	font-size: 22px;
	color: #bfdbfe;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.breadcrumb {
	display: flex;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	color: #bfdbfe;
}

.breadcrumb a {
	color: #66BB6A;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/* Contact Info Section */
.contact-info-section {
	padding: 80px 20px;
	background: white;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.contact-card {
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, #2563eb, #66BB6A);
}

.contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	border-color: #2563eb;
}

.contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	margin: 0 auto 25px;
	color: white;
}

.contact-card h3 {
	font-size: 24px;
	color: #111827;
	margin-bottom: 15px;
	font-weight: 700;
}

.contact-card p {
	font-size: 16px;
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 10px;
}

.contact-card a {
	color: #2563eb;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.contact-card a:hover {
	color: #1e40af;
	text-decoration: underline;
}

/* Map and Form Section */
.map-form-section {
	padding: 80px 20px;
	background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
}

.map-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 50px;
}

.map-container {
	background: white;
	padding: 20px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-container h3 {
	font-size: 28px;
	color: #111827;
	margin-bottom: 20px;
}

.map-placeholder {
	width: 100%;
	height: 400px;
	background: #e5e7eb;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #6b7280;
	border: 2px dashed #d1d5db;
}

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
	font-size: 28px;
	color: #111827;
	margin-bottom: 25px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
	font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Office Hours Section */
.office-hours-section {
	padding: 80px 20px;
	background: white;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 42px;
	color: #111827;
	margin-bottom: 15px;
}

.section-header p {
	font-size: 18px;
	color: #6b7280;
}

.hours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

.hours-card {
	background: linear-gradient(135deg, #dbeafe, #dcfce7);
	padding: 30px;
	border-radius: 16px;
	text-align: center;
}

.hours-card h3 {
	font-size: 22px;
	color: #111827;
	margin-bottom: 15px;
	font-weight: 700;
}

.hours-card p {
	font-size: 16px;
	color: #4b5563;
	line-height: 1.8;
}

.hours-card .day {
	font-weight: 600;
	color: #2563eb;
}

/* FAQ Section */
.faq-section {
	padding: 80px 20px;
	background: #f9fafb;
}

.faq-container {
	max-width: 800px;
	margin: 50px auto 0;
}

.faq-item {
	background: white;
	margin-bottom: 20px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
	padding: 25px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	color: #111827;
	transition: background 0.3s;
}

.faq-question:hover {
	background: #f8fafc;
}

.faq-icon {
	font-size: 24px;
	color: #2563eb;
	transition: transform 0.3s;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 25px;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 25px 25px;
}

.faq-answer p {
	color: #4b5563;
	line-height: 1.7;
	font-size: 16px;
}

/* Social Media Section */
.social-section {
	padding: 80px 20px;
	background: linear-gradient(135deg, #1e3a8a, #1e40af);
	color: white;
	text-align: center;
}

.social-section h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.social-section p {
	font-size: 18px;
	color: #bfdbfe;
	margin-bottom: 40px;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.social-btn {
	width: 60px;
	height: 60px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	font-size: 28px;
	transition: all 0.3s;
}

.social-btn:hover {
	background: white;
	color: #2563eb;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal.active {
	display: flex;
}

.modal-content {
	background: white;
	padding: 40px;
	border-radius: 16px;
	max-width: 500px;
	width: 100%;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.success-icon {
	width: 80px;
	height: 80px;
	background: #dcfce7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 40px;
	color: #66BB6A;
}

.modal-content h3 {
	font-size: 28px;
	color: #111827;
	margin-bottom: 15px;
}

.modal-content p {
	color: #6b7280;
	margin-bottom: 30px;
}

.close-modal-btn {
	background: #2563eb;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.close-modal-btn:hover {
	background: #1e40af;
}



/* Job Opening */
/* Banner Section */
.jobs-banner {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(30, 64, 175, 0.95)), 
		url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&h=600&fit=crop') center/cover;
	color: white;
	padding: 100px 20px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.jobs-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 70% 50%, rgba(102, 187, 106, 0.2), transparent 60%);
}

.banner-content {
	position: relative;
	z-index: 10;
}

.jobs-banner h1 {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.jobs-banner .subtitle {
	font-size: 22px;
	color: #bfdbfe;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.breadcrumb {
	display: flex;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	color: #bfdbfe;
}

.breadcrumb a {
	color: #66BB6A;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/* Search Filter Section */
.search-section {
	padding: 40px 20px;
	background: white;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	margin: -40px 20px 0;
	border-radius: 16px;
	position: relative;
	z-index: 100;
}

.search-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr auto;
	gap: 15px;
	align-items: end;
}

.search-group {
	display: flex;
	flex-direction: column;
}

.search-group label {
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
	font-size: 14px;
}

.search-group input,
.search-group select {
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s;
}

.search-group input:focus,
.search-group select:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
	padding: 12px 30px;
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	height: 48px;
}

.search-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Jobs Section */
.jobs-section {
	padding: 60px 20px 80px;
	background: #f9fafb;
}

.jobs-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.jobs-count {
	font-size: 18px;
	color: #6b7280;
}

.jobs-count strong {
	color: #2563eb;
	font-size: 24px;
}

.sort-filter {
	display: flex;
	gap: 15px;
	align-items: center;
}

.sort-filter label {
	font-weight: 600;
	color: #374151;
	font-size: 14px;
}

.sort-filter select {
	padding: 10px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
}

/* Job Cards */
.jobs-grid {
	display: grid;
	gap: 25px;
}

.job-card {
	background: white;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: all 0.3s;
	border: 1px solid #e5e7eb;
}

.job-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border-color: #2563eb;
}

.job-header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 20px;
}

.job-title-section h2 {
	font-size: 24px;
	color: #111827;
	margin-bottom: 8px;
	font-weight: 700;
}

.company-name {
	color: #2563eb;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}

.job-badge {
	background: #dcfce7;
	color: #16a34a;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
}

.job-badge.part-time {
	background: #fef3c7;
	color: #d97706;
}

.job-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e7eb;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #6b7280;
	font-size: 14px;
}

.meta-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.job-description {
	color: #4b5563;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.requirements {
	margin-bottom: 20px;
}

.requirements h3 {
	font-size: 16px;
	color: #111827;
	margin-bottom: 12px;
	font-weight: 600;
}

.requirements ul {
	list-style: none;
	padding: 0;
}

.requirements li {
	color: #4b5563;
	font-size: 14px;
	padding-left: 25px;
	position: relative;
	margin-bottom: 8px;
}

.requirements li::before {
	content: '•';
	color: #2563eb;
	font-weight: bold;
	position: absolute;
	left: 10px;
}

.job-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
}

.posted-date {
	color: #6b7280;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.apply-btn {
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s;
}

.apply-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 50px;
}

.page-btn {
	padding: 10px 18px;
	border: 1px solid #d1d5db;
	background: white;
	color: #4b5563;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 600;
}

.page-btn:hover {
	background: #2563eb;
	color: white;
	border-color: #2563eb;
}

.page-btn.active {
	background: #2563eb;
	color: white;
	border-color: #2563eb;
}

/* CTA Section */
.cta-section {
	padding: 80px 20px;
	background: linear-gradient(135deg, #66BB6A, #2563eb);
	text-align: center;
	color: white;
}

.cta-section h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 20px;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	color: rgba(255,255,255,0.9);
}

.cta-btn {
	background: white;
	color: #2563eb;
	padding: 15px 35px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s;
	display: inline-block;
}

.cta-btn:hover {
	background: #f3f4f6;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}



/* Submit Resume */

/* Banner Section */
.resume-banner {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(30, 64, 175, 0.95)), 
		url('https://images.unsplash.com/photo-1586281380349-632531db7ed4?w=1600&h=600&fit=crop') center/cover;
	color: white;
	padding: 100px 20px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.resume-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(102, 187, 106, 0.2), transparent 60%);
}

.banner-content {
	position: relative;
	z-index: 10;
}

.resume-banner h1 {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.resume-banner .subtitle {
	font-size: 22px;
	color: #bfdbfe;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.breadcrumb {
	display: flex;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	color: #bfdbfe;
}

.breadcrumb a {
	color: #66BB6A;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/* Info Section */
.info-section {
	padding: 60px 20px;
	background: white;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.info-card {
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	padding: 30px;
	border-radius: 16px;
	text-align: center;
	border: 2px solid transparent;
	transition: all 0.3s;
}

.info-card:hover {
	border-color: #2563eb;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 35px;
	margin: 0 auto 20px;
	color: white;
}

.info-card h3 {
	font-size: 20px;
	color: #111827;
	margin-bottom: 12px;
	font-weight: 700;
}

.info-card p {
	color: #4b5563;
	font-size: 15px;
	line-height: 1.7;
}

/* Form Section */
.form-section {
	padding: 80px 20px;
	background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
}

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

.section-header h2 {
	font-size: 42px;
	color: #111827;
	margin-bottom: 15px;
}

.section-header p {
	font-size: 18px;
	color: #6b7280;
}

.form-container {
	max-width: 900px;
	margin: 0 auto;
	background: white;
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	border: 2px solid #e5e7eb;
}

.form-step-indicator {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	position: relative;
}

.form-step-indicator::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	height: 2px;
	background: #e5e7eb;
	z-index: 0;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}

.step-number {
	width: 40px;
	height: 40px;
	background: #e5e7eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #6b7280;
	margin-bottom: 10px;
	transition: all 0.3s;
}

.step.active .step-number {
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
}

.step-label {
	font-size: 13px;
	color: #6b7280;
	font-weight: 600;
}

.step.active .step-label {
	color: #2563eb;
}

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

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: 600;
	color: #374151;
	margin-bottom: 10px;
	font-size: 15px;
}

.form-group label .required {
	color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 14px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 15px;
	transition: all 0.3s;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.file-upload-wrapper {
	position: relative;
	border: 2px dashed #d1d5db;
	border-radius: 10px;
	padding: 40px 20px;
	text-align: center;
	transition: all 0.3s;
	background: #f9fafb;
	cursor: pointer;
}

.file-upload-wrapper:hover {
	border-color: #2563eb;
	background: #f0f9ff;
}

.file-upload-wrapper.active {
	border-color: #66BB6A;
	background: #f0fdf4;
}

.file-upload-icon {
	font-size: 48px;
	margin-bottom: 15px;
}

.file-upload-text {
	font-size: 16px;
	color: #4b5563;
	margin-bottom: 10px;
}

.file-upload-text strong {
	color: #2563eb;
}

.file-upload-info {
	font-size: 13px;
	color: #9ca3af;
}

.file-upload-wrapper input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.file-name {
	margin-top: 15px;
	padding: 12px;
	background: #f0f9ff;
	border-radius: 8px;
	color: #2563eb;
	font-weight: 600;
	font-size: 14px;
}

.checkbox-group {
	display: flex;
	align-items: start;
	gap: 12px;
	margin: 25px 0;
}

.checkbox-group input[type="checkbox"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
	margin-top: 2px;
}

.checkbox-group label {
	color: #4b5563;
	font-size: 14px;
	line-height: 1.6;
	cursor: pointer;
}

.checkbox-group label a {
	color: #2563eb;
	text-decoration: none;
}

.checkbox-group label a:hover {
	text-decoration: underline;
}

.form-actions {
	display: flex;
	gap: 15px;
	margin-top: 40px;
}

.btn {
	padding: 16px 30px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}

.btn-submit {
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-submit:disabled {
	background: #d1d5db;
	cursor: not-allowed;
	transform: none;
}

.btn-reset {
	background: white;
	color: #6b7280;
	border: 2px solid #e5e7eb;
}

.btn-reset:hover {
	background: #f9fafb;
	border-color: #d1d5db;
}

/* Tips Section */
.tips-section {
	padding: 80px 20px;
	background: white;
}

.tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.tip-card {
	background: linear-gradient(135deg, #dbeafe, #dcfce7);
	padding: 35px;
	border-radius: 16px;
	border-left: 5px solid #2563eb;
}

.tip-card:nth-child(even) {
	border-left-color: #66BB6A;
}

.tip-number {
	width: 35px;
	height: 35px;
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 15px;
}

.tip-card h3 {
	font-size: 20px;
	color: #111827;
	margin-bottom: 12px;
}

.tip-card p {
	color: #4b5563;
	font-size: 15px;
	line-height: 1.7;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal.active {
	display: flex;
}

.modal-content {
	background: white;
	padding: 50px;
	border-radius: 20px;
	max-width: 550px;
	width: 100%;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.success-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #dcfce7, #86efac);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 50px;
	animation: successPulse 0.6s ease;
}

@keyframes successPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.modal-content h3 {
	font-size: 32px;
	color: #111827;
	margin-bottom: 15px;
}

.modal-content p {
	color: #6b7280;
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.6;
}

.modal-content .note {
	font-size: 14px;
	color: #9ca3af;
	margin-bottom: 30px;
	background: #f9fafb;
	padding: 15px;
	border-radius: 10px;
}

.close-modal-btn {
	background: linear-gradient(135deg, #2563eb, #66BB6A);
	color: white;
	border: none;
	padding: 14px 40px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
}

.close-modal-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}
section#home h1 {
	font-size: 32px;
	line-height: 38px;
	margin-bottom: 12px;
}
.logo-section p {
	font-size: 14px;
}
.footer-content .logo-section {
	width: 70%;
}
.footer-content .logo img {
	filter: brightness(0) invert(1);
}