* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}


.header {
    background: #353535;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .logo img {
    max-width: 100px;
}

.navbar ul {
    list-style: none;
    float: right;
}

.navbar ul li {
    display: inline-block;
    margin-right: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.navbar ul li a:hover {
    color: #f4b41a;
}
#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire container */
    z-index: -1; /* Places the video behind other content */
}
/* Responsive Navbar */
.navbar {
    display: none; /* Hide navbar by default */
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 70%; /* Adjust as needed */
    background-color: rgba(0, 0, 0, 0.8); /* Semi-translucent background */
    z-index: 2000;
    transform: translateX(100%); /* Initially hidden off-screen */
    transition: transform 0.3s ease-in-out;
}

.navbar.active {
    transform: translateX(0); /* Slide-in effect when active */
}

.navbar ul {
    list-style: none;
    padding: 20px;
    text-align: right;
}

.navbar ul li {
    margin: 20px 0;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.navbar ul li a:hover {
    color: #f4b41a;
}

.hero-section {
    position: relative;
    height: 100vh; /* Makes the section fill the entire viewport height */
    overflow: hidden;
    margin: 0; /* Ensures no extra margins around the video */
    padding: 0;
}


.hero-section .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
}
.side-menu {
    position: fixed;
    top: 0;
    right: -35%;
    width: 35%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 20px;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    margin: 15px 0;
}

.side-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.side-menu.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}


.hamburger {
display: none; 
text-align: center;
font-size: 24px;
color: #fff;
margin-top: 10px; 
}

@media (max-width: 768px) {
.hamburger {
    display: block; 
}

.logo {
    text-align: center; 
}
}
.btn {
    background-color: #fff200df;
    color: white;
    padding: 0px 0px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 0px;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 0px;
    margin-bottom: 0px;
}

