
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    /* Smooth scrolling */
    background-color: #111;
    /* Dark background color */
}

.hero {
    position: relative;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
    text-align: center;
    background-color: #000;
    /* Fallback color */
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    pointer-events: none;
    /* Allow interaction with overlay content */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Darker tint effect */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
    padding: 0;
}

.hero p {
    font-size: 1.5em;
    margin: 10px 0 0 0;
}

.menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 20px;
}

.menu a:hover {
    text-decoration: underline;
}

.logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.logo img {
    height: 100px;
    /* Increased size */
}

section {
    padding: 50px;
}

#about {
    background-color: white;
    color: black;
    display: flex;
    align-items: flex-start;
    /* Align items at the top */
    justify-content: center;
    gap: 20px;
    padding-top: 50px;
    /* More padding at the top */
}

#about div {
    max-width: 50%;
}

#about p {
    font-size: 1.2em;
    /* Larger font size */
}

#about img {
    max-width: 50%;
    height: auto;
}

#services {
    background-color: black;
    color: white;
    text-align: center;
    /* Center text in sections */
}

.services-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 20px 0;
}

.service {
    flex: 1;
    padding: 20px;
}

.service i {
    font-size: 3em;
    margin-bottom: 10px;
}

.service p {
    font-size: 1.1em;
}

#contact {
    background-color: white;
    color: black;
    text-align: center;
    /* Center text in sections */
}

#video {
    background-color: white;
    color: black;
    text-align: center;
}

#contact .contact-details {
    margin-top: 20px;
}

#faq {
    background-color: black;
    color: white;
    text-align: center;
    /* Center text in sections */
}
/* FAQ Section Styles */


#faq h2 {
font-size: 2em;
margin-bottom: 20px;
text-align: center;
}

#faq p {
margin-bottom: 20px;
text-align: center;
}

.faq-item {
margin-bottom: 20px;
padding: 10px;

}

.faq-item h3 {
font-size: 1.5em;
margin-bottom: 10px;
}

.faq-item p {
font-size: 1em;
line-height: 1.5;
}

iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

#map {
height: 100%;
width: 100%;
max-width: 920px;
margin: 0 auto;
}

/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 10;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.7);
}

.modal-content {
position: relative;
background-color: transparent; /* Changed to transparent */
margin: auto;
padding: 0;
border: none; /* Removed border */
width: 80%;
max-width: 800px;
box-shadow: none; /* Removed box shadow */
animation: modalOpen 0.4s;
}

.modal-header, .modal-footer {
padding: 1em;
background-color: transparent; /* Changed to transparent */
color: white;
text-align: right;
border: none; /* Removed border */
}

.modal-body {
padding: 0; /* Removed padding */
}

.close {
color: white;
float: right;
font-size: 1.5em;
font-weight: bold;
}

.close:hover, .close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}

/* Animation for modal */
@keyframes modalOpen {
from {top: -300px; opacity: 0}
to {top: 0; opacity: 1}
}

/* Video Section */
#video {
background-color: #222;
color: white;
text-align: center;
padding: 60px 20px;
}

#video h2 {
font-size: 2.5em;
margin-bottom: 20px;
}

#video p {
font-size: 1.2em;
margin-bottom: 40px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

#video button {
background-color: #0d6efd;
color: white;
border: none;
padding: 15px 30px;
font-size: 1.2em;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}

#video button:hover {
background-color: #004dcf;
}

#video button:focus {
outline: none;
}

iframe {
border: none; /* Ensures iframe has no border */
}

/* Footer Styles */
footer {
background-color: white;
color: #333;
text-align: center;
padding: 20px 0;
border-top: 1px solid #ddd;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
}

.footer-content p {
margin: 0;
font-size: 1em;
}

.footer-content a {
display: block;
margin-top: 10px;
color: #333;
text-decoration: none;
}

.footer-content a:hover {
text-decoration: underline;
}


/* Responsive Menu */
/* General Menu Styles */
.menu {
display: flex;
gap: 20px;
}

/* Hamburger Menu Styles */
.hamburger {
display: none;
cursor: pointer;
font-size: 2em;
color: white;
position: absolute;
top: 20px;
right: 20px;
z-index: 5;
}

@media (max-width: 767px) {
.menu {
display: none;
flex-direction: column;
position: absolute;
top: 60px;
right: 20px;
background-color: rgba(0, 0, 0, 0.8);
border-radius: 5px;
}

.menu.show {
display: flex;
}

.menu a {
font-size: 1em;
padding: 10px;
color: white;
text-decoration: none;
}

.hamburger {
display: block;
}

#about {
flex-direction: column;
align-items: center;
}

#about div {
max-width: 90%;
}

#about img {
display: none; /* Hide image on mobile */
}

.services-container {
flex-direction: column;
align-items: center;
}

.service {
max-width: 90%;
}
}


</style>