* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	width: 100%;
	min-height: 100vh;
	background-color: #2e2e2e;
	color: white;
}

.logo img {
    height: 60px;
    max-height: 50px;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 95%;
	margin: auto;
	color: white;
}

#menu {
	font-size: 14px;
	list-style: none;
	display: flex;
	gap: 20px;
	align-items: center;
	font-family: monospace;
}

.search-box {
	width: 200px;
	height: 25px;
	margin: 0 20px 0 40px;
	border-radius: 2px;
	display: flex;
	align-items: center;
	background-color: #181715;
	gap: 2px;
	padding-right: 75px;
	margin-left: 90px;
	border: 1px solid #181715;
}

input::placeholder {
	color: white;
	/* Tomato red color */
	opacity: 1;
	/* Ensure the placeholder text is fully visible */
}

#search-icon {
	border: none;
	height: 20px;
	color: white;
	width: 19px;
	display: block;
}

.search-box input {
	color: white;
	background-color: #181715;

	border: none;
	/* Removes the border from the input field */
	outline: none;
	/* Removes the outline when focused */
	flex: 1;
	/* Allows input to take available space */
}

.dropbtn {
	background-color: transparent;
	color: white;
	/* padding: 16px; */
	font-size: 14px;
	border: none;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background-color: transparent;
}


#toogleBtn {
	font-size: 24px;
	display: none;
	cursor: pointer;
}

@media (max-width: 576px) {
	#toogleBtn {
		display: initial;
	}

	#menu {
		top: 50px;
		left: -100%;
		transition: 400ms;
		position: fixed;
		flex-direction: column;
		color: white;
		width: 70%;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.7);
		padding: 20px;
		z-index: 1000;
	}

	#menu.open-menu {
		left: 0;
	}

	#menu li {
		margin: 10px 0;
	}
}

#overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	opacity: 0;
	transition: 400ms;
	visibility: hidden;
	background: rgba(0, 0, 0, 0.7);
	z-index: 99;
}

.show-overlay {
	opacity: 1 !important;
	visibility: visible;
}



.container {
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 8%;
}

.container .row {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
}

.row section.col {
	display: flex;
	flex-direction: column;
}

.row section.left {
	flex-basis: 35%;
	min-width: 320px;
	margin-right: 60px;
}

.row section.right {
	flex-basis: 60%;
}

section.left .contactTitle h2 {
	position: relative;
	font-size: 28px;
	color: #ddd;
	display: inline-block;
	margin-bottom: 25px;
}

section.left .contactTitle h2::before {
	content: '';
	position: absolute;
	width: 50%;
	height: 1px;
	background-color: #888;
	top: 120%;
	left: 0;
}

section.left .contactTitle h2::after {
	content: '';
	position: absolute;
	width: 25%;
	height: 3px;
	background-color: dodgerblue;
	top: calc(120% - 1px);
	left: 0;
}

section.left .contactTitle p {
	font-size: 17px;
	color: #ccc;
	letter-spacing: 1px;
	line-height: 1.2;
	padding-bottom: 22px;
}

section.left .contactInfo {
	margin-bottom: 16px;
}

.contactInfo .iconGroup {
	display: flex;
	align-items: center;
	margin: 25px 0px;
}

.iconGroup .icon {
	width: 45px;
	height: 45px;
	border: 2px solid dodgerblue;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}

.iconGroup .icon i {
	font-size: 20px;
	color: #ddd;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.iconGroup .details span {
	display: block;
	color: #888;
	font-size: 18px;
}

.iconGroup .details span:nth-child(1) {
	text-transform: uppercase;
	color: #ccc;
}

section.left .socialMedia {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 22px 0px 20px;
}

.socialMedia a {
	width: 35px;
	height: 35px;
	text-decoration: none;
	text-align: center;
	margin-right: 15px;
	border-radius: 5px;
	background-color: dodgerblue;
	transition: 0.4s;
}

.socialMedia a i {
	color: #ddd;
	font-size: 18px;
	line-height: 35px;
	border: 1px solid transparent;
	transition-delay: 0.4s;
}

.socialMedia a:hover {
	transform: translateY(-5px);
	background-color: #2e2e2e;
	color: dodgerblue;
	border: 1px solid dodgerblue;
}

.socialMedia a:hover i {
	color: dodgerblue;
}

/* Code for the right section (column) */
.row section.right .messageForm {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 30px;
}

.row section.right .inputGroup {
	margin: 18px 0px;
	position: relative;
}

.messageForm .halfWidth {
	flex-basis: 48%;
}

.messageForm .fullWidth {
	flex-basis: 100%;
}

.messageForm input,
.messageForm textarea {
	width: 100%;
	font-size: 18px;
	padding: 2px 0px;
	background-color: #2e2e2e;
	color: #ddd;
	border: none;
	border-bottom: 2px solid #666;
	outline: none;
}

.messageForm textarea {
	resize: none;
	height: 220px;
	display: block;
}

textarea::-webkit-scrollbar {
	width: 5px;
}

textarea::-webkit-scrollbar-track {
	background-color: #1e1e1e;
	border-radius: 15px;
}

textarea::-webkit-scrollbar-thumb {
	background-color: dodgerblue;
	border-radius: 15px;
}

.inputGroup label {
	position: absolute;
	left: 0;
	bottom: 4px;
	color: #888;
	font-size: 18px;
	transition: 0.4s;
	pointer-events: none;
}

.inputGroup:nth-child(4) label {
	top: 2px;
}

.inputGroup input:focus~label,
.inputGroup textarea:focus~label,
.inputGroup input:valid~label,
.inputGroup textarea:valid~label {
	transform: translateY(-30px);
	font-size: 16px;
}

.inputGroup button {
	padding: 8px 16px;
	font-size: 18px;
	background-color: dodgerblue;
	color: #ddd;
	border: 1px solid transparent;
	border-radius: 25px;
	outline: none;
	cursor: pointer;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
	transition: 0.4s;
}

.inputGroup button:hover {
	background-color: #2e2e2e;
	color: dodgerblue;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	border: 1px solid dodgerblue;
}


/* Media Queries for Responsiveness */
/* Media Queries for Responsiveness */
/* Media Queries for Responsiveness */
/* Media Queries for Responsiveness */
@media (max-width: 768px) {

	/* Stack the columns (contact info + form) under each other on smaller screens */
	.row {
		flex-direction: column;
	}

	section.left,
	section.right {
		flex-basis: 100%;
		/* Make both sections take full width on small screens */
		margin-right: 0;
		margin-left: 0;
	}

	/* Adjust the social media order to be on top */
	section.left .socialMedia {
		order: 1;
	}

	section.left .contactInfo {
		order: 2;
		margin-bottom: 20px;
	}

	/* Adjust the form inputs for mobile */
	.messageForm input,
	.messageForm textarea,
	.inputGroup button {
		font-size: 14px;
		padding: 12px;
	}

	.messageForm textarea {
		height: 150px;
		/* Adjust textarea height */
	}

	/* Adjust form width */
	section.right .messageForm {
		width: 100%;
	}

	.messageForm .inputGroup {
		margin-bottom: 15px;
	}

	.messageForm .halfWidth,
	.messageForm .fullWidth {
		flex-basis: 100%;
		/* Full width for all inputs on mobile */
	}
}

/* For very small screens (optional) */
@media (max-width: 480px) {
	.container {
		padding: 20px;
	}

	section.left .contactTitle h2 {
		font-size: 20px;
	}

	.messageForm textarea {
		height: 150px;
	}
}