/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a; /* Dark background color */
    color: #ffffff; /* White text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Ensure the maintenance notice pushes content down */
.maintenance-notice {
    position: relative;
    z-index: 1000;
    margin-top: 20px;  /* Slightly pushes the notice down */
    background-color: #ADD8E6; /* Light blue */
    padding: 10px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    display: block;
}

/* Make sure the logo appears below the maintenance box */
.logo-container {
    position: absolute;  /* Absolute position to avoid overlap with other elements */
    top: 80px;           /* Pushes the logo below the maintenance notice */
    left: 20px;          /* Left-aligned logo */
    z-index: 9999;       /* Ensures it's above other elements */
    display: block;
    padding: 20px;       /* Adds space inside the container */
}

.logo {
    width: 220px;        /* Adjust the size */
    height: auto;
    display: block;      /* Ensures the image is displayed as a block element */
    visibility: visible;
    opacity: 1;
}

/* Navigation Bar Styles */
.navbar {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

/* Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px; /* Adjust width */
    height: 18px; /* Adjust height to fit 3 lines */
    cursor: pointer;
}

.line {
    height: 4px;  /* Line thickness */
    background-color: #ffffff;
    border-radius: 2px; /* Optional: Slightly round the corners of the lines */
}

/* Dropdown Menu Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    right: 0; /* Align it to the right of the hamburger icon */
    top: 30px; /* Adjust this value to position it below the hamburger */
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #00d8ff;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Optional: Styling for the hover effect of the hamburger */
.dropdown:hover .hamburger-icon .line {
    background-color: #00d8ff; /* Optionally change the color on hover */
}




/* Hero Section */
/* .hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('your-image-url.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero button {
    padding: 12px 30px;
    background-color: #00d8ff; 
    color: #ffffff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #00b3cc;
}*/

/* Hero Section */
.hero {
    position: relative;
    height: 150vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    width: 100%; /* Ensure it stretches the full width */
}

.hero .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150vh;
    object-fit: cover;  /* Ensures the video covers the whole section */
    z-index: -1; /* Send the video behind the text */
}

.hero-content {
    z-index: 1;  /* Ensures the text appears above the video */
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adds shadow for text contrast */
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero button {
    padding: 12px 30px;
    background-color: #00d8ff;
    color: #ffffff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #00b3cc;
}


/* About Us Section */
.about {
   padding: 120px 20px;
    background: url('assets/WhoWeAre_im.jpg') no-repeat center center; /* Background image in assets folder */
    background-size: cover; /* Ensure the background image covers the whole section */
    background-position: center; /* Center the image */
    background-attachment: scroll; /* Keeps the image from moving when you scroll */
    color: #ffffff; /* Ensure the text is readable on the image */
    height: 968px; /* Set a fixed height to fit the image and prevent resizing */
    text-align: center; /* Center the text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Adjust the font size for better visibility */
.about h2 {
    font-size: 48px; /* Larger font size */
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2; /* Adjust line height */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Subtle shadow for vibrance */
}

.about p {
    font-size: 24px; /* Larger font size for paragraph */
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6; /* Adjust line height for better readability */
    max-width: 1000px; /* Optional: Set a max-width to avoid lines being too long */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Subtle shadow for vibrance */
}

/* Services Section */
.services {
    padding: 120px 20px;
    background: url('assets/WhatWeDo_im.jpg') no-repeat center center; /* Background image in assets folder */
    background-size: cover; /* Ensure the background image covers the whole section */
    background-position: center; /* Center the image */
    background-attachment: scroll; /* Keeps the image from moving when you scroll */
    color: #ffffff; /* Ensure the text is readable on the image */
    height: 968px; /* Set a fixed height to fit the image and prevent resizing */
    text-align: center; /* Center the text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services h2 {
    font-size: 48px; /* Larger font size */
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2; /* Adjust line height */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Subtle shadow for vibrance */
}

.services p {
    font-size: 24px; /* Larger font size for paragraph */
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6; /* Adjust line height for better readability */
    max-width: 1000px; /* Optional: Set a max-width to avoid lines being too long */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Subtle shadow for vibrance */
}

.services button {
    padding: 12px 30px; /* Aligning with "Learn More" button */
    background-color: #00d8ff;
    color: #ffffff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Adds space between the text and button */
    font-weight: bold; /* Same bold font weight as "Learn More" */
}

.services button:hover {
    background-color: #00b3cc;
}

/* Footer Section */
footer {
    padding: 20px 0;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
}