*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Inter', sans-serif;
	background-color: #ffffff;
	color: #000000;
}
h1, h2, h3{
	font-family: 'Montserrat', sans-serif;
}





header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 60px;
	border-bottom: 1px solid #e0e2e5;
}
.brand{
	display: flex;
	align-items: center;
	gap: 12px;
}
.brand img{
	width: 50px;
	height: 50px;
	object-fit: cover;
}
.brand h2{
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 600;
}

nav{
	display: flex;
	gap: 30px;
}
nav a{
	text-decoration: none;
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
}nav a:hover{
	color: #1d6dc2;
}





.home{
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 60px 20px;
	background-image: url("../img/home.jpg");
	background-size: cover;
	background-position: center;

	position: relative;
}
.home::before{
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 1;
}
.home h1,
.home p,
.home a{
	position: relative;
	z-index: 2;
}
.home h1{
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	color: #ffffff;
}
.home p{
	font-size: 18px;
	color: #ffffff;
	margin-top: 20px;
	max-width: 600px;
}
.home a{
	margin-top: 30px;
	background-color: #1d6dc2;
	padding: 14px 28px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	border-radius: 6px;
	transition: 0.3s;

	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.home a:hover{
	background-color: #0e3d69;
}





.about{
	display: flex;
	align-items: center;
	gap: 60px;
	padding: 100px 60px;
}
.about-text, .about-image{
	flex: 1;
}
.about-image img{
	width: 100%;
	height: 530px;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 8px;
}
.about h2{
	font-size: 42px;
	color: #0e3d69;
	margin-bottom: 15px;
}
.about h3{
	font-size: 24px;
	margin-bottom: 20px;
	color: #000000;
}
.about p{
	font-size: 17px;
	line-height: 1.7;
	color: #333333;
}





.services{
	padding: 100px 60px;
	text-align: center;
}
.services h2{
	font-size: 42px;
	color: #0e3d69;
	margin-bottom: 50px;
}
.services-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}
.service{
	flex: 1 1 280px;
	max-width: 350px;
	padding: 35px 25px;
	border: 1px solid #e0e2e5;
	border-radius: 8px;

	transition: 0.3s;
}
.service h3{
	font-size: 21px;
	color: #0e3d69;
	margin-bottom: 15px;
}
.service p{
	font-size: 16px;
	line-height: 1.6;
	color: #333333;
}
.service:hover{
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}





.ourwork{
	padding: 100px 60px;
	text-align: center;
}
.ourwork h2{
	font-size: 42px;
	color: #0e3d69;
	margin-bottom: 50px;
}
.gallery{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.gallery img{
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 6px;

	transition: 0.3s;
}
.gallery img:hover{
	transform: scale(1.02);
}
.ourwork > a{
	display: inline-block;
	margin-top: 40px;
	padding: 14px 28px;
	background-color: #1d6dc2;
	color: #ffffff;
	text-decoration: none;
	border-radius: 6px;
	transition: 0.3s;
}
.ourwork > a:hover{
	background-color: #0e3d69;
}





.process{
	padding: 100px 60px;
	text-align: center;
}
.process h2{
	font-size: 42px;
	color: #0e3d69;
	margin-bottom: 60px;
}
.process-container{
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.step{
	flex: 1;
}
.step h3{
	font-size: 36px;
	color: #1d6dc2;
	margin-bottom: 15px;
}
.step h4{
	font-size: 20px;
	margin-bottom: 12px;
}
.step p{
	font-size: 16px;
	line-height: 1.6;
	color: #333333;
}





.contact{
	padding: 100px 60px;
	text-align: center;
}
.contact h2{
	font-size: 42px;
	color: #0e3d69;
	margin-bottom: 15px;
}
.contact > p{
	font-size: 17px;
	color: #333333;
	margin-bottom: 40px;
}
.contact-info{
	margin-bottom: 40px;
}
.contact-info p{
	margin-bottom: 8px;
	font-size: 16px;
}
.contact-info a{
	color: #1d6dc2;
	text-decoration: none;
}
.contact-info a:hover{
	color: #0e3d69;
}
.contact form{
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.contact input, .contact textarea{
	width: 100%;
	padding: 15px;
	border: 1px solid #e0e2e5;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
}
.contact textarea{
	height: 150px;
	resize: vertical;
}
.contact button{
	padding: 15px;
	background-color: #1d6dc2;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
}
.contact button:hover{
	background-color: #0e3d69;
}





footer{
	padding: 25px;
	text-align: center;
	border-top: 1px solid #e0e2e5;
	font-size: 14px;
	color: #555555;
}

html{
	scroll-behavior: smooth;
}





header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #ffffff;
	transition: transform 0.3s ease;
}
header.hide{
	transform: translateY(-100%);
}
body{
	padding-top: 91px;
}





.menu-toggle{
	display: none;
}
@media (max-width: 768px){
	header{
		width: 100%;
		max-width: 100%;
		padding: 12px 20px;
		box-sizing: border-box;
	}
	.menu-toggle{
		display: block;
		flex-shrink: 0;
		background: none;
		border: none;
		font-size: 26px;
		cursor: pointer;
		padding: 5px;
	}
	nav{
		display: none;
		position: absolute;
		top: 100%;
		right: 20px;
		flex-direction: column;
		gap: 20px;
		background-color: #ffffff;
		padding: 10px 0;
		border: 1px solid #e0e2e5;
		border-radius: 6px;
	}nav.open{
		display: flex;
	}nav a{
		padding: 12px 25px;
	}
	.brand img{
		width: 40px;
		height: 40px;
	}
	.brand h2{
		font-size: 18px;
	}
	.process-container{
		flex-direction: column;
		gap: 40px;
	}
	.home{
		width: 100%;
		box-sizing: border-box;
		padding: 60px 20px;
	}
	.home h1{
		font-size: 50px;
	}



	.about{
		flex-direction: column;
		padding: 70px 20px;
		gap: 40px;
	}
	.about-image img{
		height: 350px;
	}



	.services{
		padding: 70px 20px;
	}
	.services-container{
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.service{
		width: 100%;
		max-width: 500px;
		flex: none;
		padding: 30px 20px;
	}



	.work{
		padding: 70px 20px;
	}
	.gallery{
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.gallery img{
		height: 250px;
	}



	.process{
		padding: 70px 20px;
	}
	.process h2{
		margin-bottom: 50px;
	}



	.contact{
		padding: 70px 20px;
	}
	.contact form{
		width: 100%;
	}
	.contact input, .contact textarea{
		font-size: 16px;
	}
}





.gallery-page{
	padding-top: 50px
}
.gallery-page p{
	margin-bottom: 20px
}





.success-message{
	text-align: center;
	padding: 30px;
}
.success-message h3{
	font-size: 24px;
	color: #2e7d32;
	margin-bottom: 10px;
}
.success-message p{
	font-size: 16px;
	color: #333333;
	margin-bottom: 20px;
}
.new-request{
	padding: 12px 24px;
	background-color: #1d6dc2;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}