/* CSS Reset */
* {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

/* CSS Variables */
:root {
	--navbar-height: 59px;
}

/* Navigation Bar */
#navbar {
	display: flex;
	align-items: center;
	position: sticky;
	top: 0px;
}

/* #navbar::before {
	content: "";
	background-color: black;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	z-index: -1;
	opacity: 0.7;
} */

#navbar::before {
	content: "";
	background-color: black;
	position: absolute;
	z-index: -1;
	top: 10px;
	left: 33px;
	height: 82%;
	width: 95%;
	opacity: 0.7;
	right: 23px;
}

/* Navigation Bar: Logo and Image */
#logo {
	margin: 10px 34px;
}

#logo img {
	height: 59px;
	margin: 3px 6px;
}

/* Navigation Bar: List Styling */

#navbar ul {
	display: flex;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

#navbar ul li {
	list-style: none;
	font-size: 1.3rem;
}

#navbar ul li a {
	color: white;
	display: block;
	padding: 6px 22px;
	border-radius: 4px;
	text-decoration: none;
}

#navbar ul li a:hover {
	color: black;
	background-color: rgb(180, 112, 10);
}

/* Home Section */
#home {
	display: flex;
	flex-direction: column;
	padding: 3px 200px;
	height: 550px;
	justify-content: center;
	align-items: center;
}

#home::before {
	content: "";
	position: absolute;
	background: url("Main1.jpg") no-repeat center center/cover;
	filter: brightness(50%);
	height: 642px;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: -1;
	opacity: 1;
}

#home h1 {
	color: white;
	text-align: center;
	font-family: "Bree Serif", serif;
}

#home p {
	color: white;
	text-align: center;
	font-size: 1.5rem;
	font-family: "Bree Serif", serif;
}
/* Services Section */
#services {
	margin: 34px;
	display: flex;
}
#services .box {
	/* border: 2px solid brown; */
	padding: 34px;
	margin: 2px 15px;
	border-radius: 2px;
	background: #f2f2f2;
	margin-bottom: 20px;
}

#services .box img {
	height: 250px;
	margin: auto;
	display: block;
}

#services .box p {
	font-family: "Bree Serif", serif;
}

/* Clients Section */
#client-section {
	position: relative;
}

#client-section::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.3;
}

#clients {
	display: flex;
	justify-content: center;
	align-items: center;
}

.client-item {
	padding: 3px;
	margin-bottom: 100px;
}

#clients img {
	height: 124px;
}

/* Contact Section */
#contact {
	position: relative;
}
#contact::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.3;
	background: url("last.jpg") no-repeat center center/cover;
}
#contact-box {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 34px;
}
#contact-box input {
	width: 100%;
	padding: 0.5rem;
	border-radius: 3px;
	font-size: 1.2rem;
	outline: none;
	border: none;
}

#contact-box form {
	width: 80%;
}

#contact-box label {
	font-size: 1rem;
	font-weight: 600;
}
#contact-box ::placeholder {
	font-size: 1rem;
	font-family: "Prosto One";
}

footer {
	background: black;
	color: white;
	padding: 9px 20px;
}

/* Utility Classes */
.h-primary {
	font-family: "Bree Serif", serif;
	font-size: 3.8rem;
	padding: 15px;
	color: rgb(24, 24, 24);
}
.h-primary2 {
	font-family: "Pacifico", cursive;
	font-size: 2.5rem;

	padding: 15px;
	color: rgb(24, 24, 24);
}

.h-secondary {
	font-family: "Prosto One", cursive;
	font-size: 1.5rem;
	padding: 12px;
}

.btn {
	padding: 10px 60px;
	/* border: 2px solid white; */
	border: none;
	background-color: rgb(192, 27, 27);
	color: white;
	margin: 17px;
	font-size: 1.5rem;
	border-radius: 2px;
	cursor: pointer;
}

.btn:hover {
	background-color: #f2f2f2;
	color: rgb(0, 0, 0);
}

.center {
	font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
	text-align: center;
}
