* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #2c3e50;
	--secondary-color: #3498db;
	--accent-color: #e74c3c;
	--text-color: #333;
	--light-bg: #f8f9fa;
	--white: #ffffff;
	--transition: all 0.3s ease;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--light-bg);
	overflow-x: hidden;
}

header {
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 10px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

nav {
	background-color: var(--primary-color);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 2rem;
	padding: 0 1rem;
}

nav li {
	margin-right: 20px;
	position: relative;
}

nav a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: var(--transition);
	position: relative;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--secondary-color);
	transition: var(--transition);
	transform: translateX(-50%);
}

nav a:hover::after {
	width: 100%;
}

nav a.active {
	color: #fff;
	background-color: #0077cc;
}

nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	padding: 10px 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

nav ul li:hover > ul {
	display: block;
}

nav ul ul li {
	margin-right: 0;
}

nav ul ul a {
	padding: 5px 20px;
}

main {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

h1 {
	font-size: 36px;
	margin-bottom: 20px;
	color: #0077cc;
}

section {
	background: var(--white);
	padding: 2.5rem;
	margin-bottom: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	transition: var(--transition);
}

section:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

h2 {
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-size: 2rem;
	position: relative;
	padding-bottom: 0.5rem;
}

h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background-color: var(--secondary-color);
}

h3 {
	color: var(--secondary-color);
	margin: 1.5rem 0 1rem;
}

p {
	margin-bottom: 1rem;
}

ul {
	list-style-position: inside;
	margin-bottom: 1rem;
}

li {
	margin-bottom: 0.5rem;
}

.hero {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: var(--white);
	text-align: center;
	padding: 6rem 2rem;
	margin-bottom: 2rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0 L100 100 M100 0 L0 100" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
	opacity: 0.1;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.hero h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 300;
	animation: fadeInUp 1s ease 0.2s;
}

.tagline {
	font-size: 1.2rem;
	font-style: italic;
	animation: fadeInUp 1s ease 0.4s;
}

.key-achievements {
	background-color: var(--light-bg);
	padding: 1.5rem;
	border-radius: 8px;
	margin-top: 1.5rem;
}

.contact {
	background-color: #f8f9fa;
}

.contact ul {
	list-style: none;
}

.contact li {
	margin-bottom: 1rem;
}

footer {
	background-color: #2c3e50;
	color: white;
	text-align: center;
	padding: 1rem;
	margin-top: 2rem;
}

@media (max-width: 1200px) {
	main {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	nav ul {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	.hero {
		padding: 4rem 1rem;
	}
	
	.hero h1 {
		font-size: 2.5rem;
	}
	
	.hero h2 {
		font-size: 1.5rem;
	}
	
	main {
		padding: 0 1rem;
	}
	
	section {
		padding: 1.5rem;
	}
	
	.skills-grid {
		grid-template-columns: 1fr;
	}
	
	.plans {
		grid-template-columns: 1fr;
	}
	
	.timeline::before {
		left: 10px;
	}
	
	.timeline-item {
		padding-left: 3rem;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2rem;
	}
	
	.hero h2 {
		font-size: 1.2rem;
	}
	
	section {
		padding: 1rem;
	}
	
	h2 {
		font-size: 1.5rem;
	}
}

/* Timeline Styles */
.timeline {
	position: relative;
	padding: 2rem 0;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--secondary-color);
}

.timeline-item {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 2rem;
	animation: fadeInRight 1s ease;
}

.timeline-item:before {
	content: '';
	position: absolute;
	left: -6px;
	top: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--secondary-color);
	border: 2px solid var(--white);
	box-shadow: 0 0 0 4px var(--secondary-color);
}

/* Skills Grid */
.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.skill-category {
	background-color: var(--light-bg);
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	transition: var(--transition);
}

.skill-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.skill-category h2 {
	color: #2c3e50;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #3498db;
}

/* Current Ventures */
.venture {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #eee;
}

.venture:last-child {
	border-bottom: none;
}

.achievements, .features {
	background-color: var(--light-bg);
	padding: 1.5rem;
	border-radius: 8px;
	margin-top: 1.5rem;
}

/* Future Plans */
.plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 1.5rem;
}

/* Community Impact */
.community-impact {
	background-color: #f8f9fa;
}

/* AI Section */
.ai-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.ai-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0 L100 100 M100 0 L0 100" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
	opacity: 0.1;
}

.ai-section h2 {
	color: var(--white);
}

.ai-section h2::after {
	background-color: var(--white);
}

.ai-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.ai-feature {
	background: rgba(255,255,255,0.1);
	padding: 2rem;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: var(--transition);
	border: 1px solid rgba(255,255,255,0.2);
}

.ai-feature:hover {
	transform: translateY(-5px);
	background: rgba(255,255,255,0.15);
	border-color: rgba(255,255,255,0.3);
}

.ai-feature i {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--white);
}

.ai-feature h3 {
	color: var(--white);
	margin: 1rem 0;
}

/* Vision Features */
.vision-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.vision-feature {
	text-align: center;
	padding: 1.5rem;
	background: rgba(52, 152, 219, 0.1);
	border-radius: 8px;
	transition: var(--transition);
}

.vision-feature:hover {
	transform: translateY(-5px);
	background: rgba(52, 152, 219, 0.2);
}

.vision-feature i {
	font-size: 2.5rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.vision-feature h3 {
	margin: 1rem 0;
	color: var(--primary-color);
}

/* Contact Info */
.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--light-bg);
	border-radius: 8px;
	transition: var(--transition);
}

.contact-item:hover {
	transform: translateX(5px);
	background: rgba(52, 152, 219, 0.1);
}

.contact-item i {
	font-size: 1.5rem;
	color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Animation Enhancements */
@keyframes float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

.vision-feature i,
.ai-feature i {
	animation: float 3s ease-in-out infinite;
}

/* Loading Animation */
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

section {
	animation: pulse 2s ease-in-out;
}

/* Contact Form Styles */
.contact-section {
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 20px;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info {
	padding-right: 40px;
	border-right: 1px solid #eee;
}

.contact-info h2 {
	margin-bottom: 20px;
	color: #2c3e50;
}

.contact-details {
	margin: 30px 0;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.contact-item i {
	font-size: 24px;
	color: #3498db;
	margin-right: 15px;
	width: 30px;
}

.social-links {
	display: flex;
	gap: 20px;
	margin-top: 30px;
}

.social-links a {
	color: #2c3e50;
	font-size: 24px;
	transition: color 0.3s;
}

.social-links a:hover {
	color: #3498db;
}

.contact-form {
	padding: 20px;
}

.contact-form h2 {
	margin-bottom: 30px;
	color: #2c3e50;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #2c3e50;
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #3498db;
	outline: none;
}

.submit-btn {
	background: #3498db;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.3s;
}

.submit-btn:hover {
	background: #2980b9;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
	.contact-container {
		grid-template-columns: 1fr;
	}

	.contact-info {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid #eee;
		padding-bottom: 30px;
	}
}

/* Gallery Styles */
.gallery-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.gallery-section h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
}

.lb-data .lb-number {
    font-size: 14px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .gallery-item img {
        height: 200px;
    }
}

/* Alert Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
