body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #eaeaea;
    line-height: 1.6;
	text-align:center;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(10,10,10,0.95);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
    z-index: 1000;
}

.logo {
    font-weight: 600;
    letter-spacing: 1px;
}

nav a {
    color: #ccc;
    margin-left: 25px;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #d4a017;
}

section {
    padding: 20px 40px 0px 40px;
    max-width: 100%;
    margin: auto;
	text-align:center;
}

.hero {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: .9;
	background-image: url("https://images.unsplash.com/photo-1507275016429-544fc0875edd?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-repeat: no-repeat;
	background-size: 100%;
	text-align:center;
	padding-bottom: 3%;
	align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    color: #b5b5b5;
}

.button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    border: 1px solid #d4a017;
    color: #d4a017;
    text-decoration: none;
    font-size: 14px;
	width:15%;
}

.button:hover {
    background-color: #d4a017;
    color: #0a0a0a;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
	text-align: center;
    list-style-position: inside;
}

li {
    margin-bottom: 8px;
}

.section-dark {
    background-color: #111;
	background-image: url("https://images.unsplash.com/photo-1507275016429-544fc0875edd?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-repeat: no-repeat;
	background-size: 100%;
}

.section-dark h2{
margin-top: 10%;

}

.section-dark h1{
margin-top: 10%;

}

.rounded-image {
border-radius: 35%; /* Makes the image circular */
width: 20%; /* Adjust the width as needed */
height: auto; /* Maintains the aspect ratio */
}

.logo .rounded-image
{ 
max-width: 100px;
    height: auto;
	border-radius: 35%; /* Makes the image circular */
	position:fixed;
	margin-top:-1.2%;
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #1a1a1a;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    height: 60px;
    position: relative;
}
.logo 
{ 
font-size: 1.5rem; 
}
.menu { list-style: none; display: flex; margin: 0; padding: 0; }
.menu li a { color: white; text-decoration: none; padding: 0 15px; line-height: 60px; }
.hamburger-icon { display: none; cursor: pointer; }
/* Hide the actual checkbox input */
#menu-toggle { display: none; }

.mobile-menu{
float: right; margin-left: 20vw;
}

@media(max-width:750px){
	.hero {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		background-color: rgba(0, 0, 0, 0.5);
		opacity: .9;
		background-image: url("https://images.unsplash.com/photo-1507275016429-544fc0875edd?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
		background-repeat: no-repeat;
		background-size: 500%;
		text-align:center;
		padding-bottom: 3%;
		padding-top: 12%;
		align-items: center;
	}
    .hero h1 {
        font-size: 32px;
    }
	.rounded-image{
	    width: 75%;
		text-align: center;
		margin-top: 25%;
	}
    .hamburger-icon { display: block; }
    .menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
		background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        display: none; /* Hide the menu by default on mobile */
    }
    .menu li a { line-height: 40px; padding: 10px 20px; }
    /* Show the menu when the checkbox is checked */
    #menu-toggle:checked ~ .menu {
        display: flex;
    }
	.logo .rounded-image
{ 
max-width: 100px;
    height: auto;
	border-radius: 35%; /* Makes the image circular */
}

.section-dark {
    background-color: #111;
	background-image: url("https://images.unsplash.com/photo-1507275016429-544fc0875edd?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-repeat: no-repeat;
	background-size: 500%;
}

.section-dark h2{
margin-top: 30%;
}
.section-dark h1{
margin-top: 40%;
}
.mobile-menu{
float: right; margin-left: 70vw;
}
}
