/* CSS Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #1a3a5f;
	--secondary-color: #e67e22;
	--accent-color: #f8f9fa;
	--text-dark: #333;
	--text-light: #fff;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: #f8f9fa;
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-block;
	background-color: var(--secondary-color);
	color: var(--text-light);
	padding: 12px 24px;
	border-radius: 4px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background-color: #d35400;
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--secondary-color);
	color: var(--secondary-color);
}

.btn-outline:hover {
	background-color: var(--secondary-color);
	color: var(--text-light);
}

/* Header Styles */
header {
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo h1 {
	font-size: 1.8rem;
	margin-left: 10px;
}

.logo i {
	color: var(--secondary-color);
	font-size: 2rem;
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin: 0 15px;
}

nav ul li a {
	color: var(--text-light);
	font-weight: 600;
	transition: color 0.3s ease;
}

nav ul li a:hover {
	color: var(--secondary-color);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(26, 58, 95, 0.8), rgba(26, 58, 95, 0.8)), url('https://images.unsplash.com/photo-1504707748635-46d571a83e2b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
	color: var(--text-light);
	margin-top: 70px;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.hero h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
	padding: 80px 0;
	background-color: var(--accent-color);
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: var(--secondary-color);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background: var(--text-light);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
}

.service-img {
	height: 200px;
	overflow: hidden;
}

.service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
	transform: scale(1.1);
}

.service-content {
	padding: 25px;
}

.service-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--primary-color);
}

/* About Section */
.about {
	padding: 80px 0;
	background-color: var(--text-light);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.about-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Portfolio Section */
.portfolio {
	padding: 80px 0;
	background-color: var(--accent-color);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.portfolio-item {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	height: 300px;
	box-shadow: var(--shadow);
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 58, 95, 0.8);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	padding: 20px;
	text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-item:hover img {
	transform: scale(1.1);
}

/* Testimonials */
.testimonials {
	padding: 80px 0;
	background-color: var(--text-light);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: var(--accent-color);
	border-radius: 8px;
	padding: 30px;
	box-shadow: var(--shadow);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 5rem;
	color: var(--secondary-color);
	opacity: 0.3;
	font-family: Georgia, serif;
}

.testimonial-content {
	margin-top: 30px;
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.author-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	color: var(--primary-color);
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background-color: var(--accent-color);
}

.contact-container {
	display: flex;
	gap: 40px;
}

.contact-info {
	flex: 1;
}

.contact-info h2 {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.contact-details {
	margin-bottom: 30px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.contact-item i {
	font-size: 1.5rem;
	color: var(--secondary-color);
	margin-right: 15px;
	margin-top: 5px;
}

.contact-form {
	flex: 1;
	background: var(--text-light);
	padding: 30px;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: inherit;
}

.form-group textarea {
	height: 150px;
	resize: vertical;
}

/* Footer */
footer {
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 40px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

.footer-column h3 {
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background-color: var(--secondary-color);
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a:hover {
	color: var(--secondary-color);
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background-color: var(--secondary-color);
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}
	
	.contact-container {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}
	
	nav ul {
		position: fixed;
		top: 70px;
		left: -100%;
		flex-direction: column;
		background-color: var(--primary-color);
		width: 100%;
		text-align: center;
		transition: all 0.3s ease;
		box-shadow: var(--shadow);
	}
	
	nav ul.active {
		left: 0;
	}
	
	nav ul li {
		margin: 15px 0;
	}
	
	.hero h2 {
		font-size: 2.5rem;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
}

@media (max-width: 576px) {
	.hero h2 {
		font-size: 2rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
	
	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}


video {
  position:absolute;
  top:0;
  left:0;
  background: blue;
  z-index:-1;
  width:99vw;
  height:100vw;
}
