body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f8f8f8;
	color: #333;
}

header,.header {
	background-color: #1a1a1a;
	color: #fff;
	padding: 1em;
	text-align: center;
}

nav {
	display: flex;
	justify-content: center;
	background-color: #333;
	padding: 0.5em;
}

nav a {
	color: #fff;
	text-decoration: none;
	padding: 1em;
	margin: 0 1em;
	transition: background-color 0.3s;
	border-radius: 5px;
}

nav a:hover {
	background-color: #555;
}

section {
	padding: 2em;
}

footer {
	background-color: #1a1a1a;
	color: #fff;
	text-align: center;
	padding: 1em;
	position: relative;
	bottom: 0;
}

.footer {
	background-color: #1a1a1a;
	color: #fff;
	text-align: center;
	padding: 1em;
	position: relative;
	bottom: 0;
}

h2 {
	color: #333;
}

p {
	line-height: 1.6;
}

ul {
	list-style: none;
	padding: 0;
}

li {
	margin-bottom: 0.5em;
}

form {
	display: grid;
	gap: 1em;
}

label {
	display: block;
	font-weight: bold;
	margin-bottom: 0.5em;
}

input,
textarea {
	width: 100%;
	padding: 0.5em;
	border: 1px solid #ccc;
	border-radius: 3px;
}

button {
	background-color: #333;
	color: #fff;
	padding: 0.7em 1em;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #555;
}

.hamburger-menu {
    width: 35px; /* Width of the menu */
    height: 30px; /* Height of the menu */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: white;
    transition: 0.3s;
}

/* Hamburger icon animation */
.changed .bar1 {
    -webkit-transform: rotate(-45deg) translate(-7px, 6px);
    transform: rotate(-45deg) translate(-7px, 6px);
}

.changed .bar2 {opacity: 0;}

.changed .bar3 {
    -webkit-transform: rotate(45deg) translate(-7px, -6px);
    transform: rotate(45deg) translate(-7px, -6px);
}

.profilePic {
    border-radius: 85px;
    border:5px solid white;
    width: 150px;
    height: 150px;
    margin-left:auto;
    margin-right:auto;
    line-height: 40px;
    box-shadow: 3px 3px 3px #eee;
}

.sectionHeading {
    font-size:60px;
}

.sectionSubHeading {
    font-size:40px;
}

.blockFixer1 {
    display: inline-block;
    overflow-y: hidden;
}

#services {
    color:#467FF7;
    font-size:20px;
}

h2 {
    color:#467FF7;
    font-size:24px;
}

#testimonials {
    font-size:20px;
}

@media (max-width: 1024px)
.mobile {

}
