/* Reset CSS */
/* Reset CSS and global styles... */

/* Navbar */

/* Navigation bar */
.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    /* Transparent black overlay */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 3;
    /* Ensure it's above other content */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    color: white;
    font-size: 1.5rem;
}

.menu-icon {
    color: #e1e1de;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    /* Initially hide on larger screens */
    margin-left: 20px;
}

.menu {
    display: flex;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu li {
    margin: 0 10px;
}

.menu a {
    color: white;
    text-decoration: none;
}

/* Media queries */
@media (max-width: 768px) {
    .menu {
        display: none;
        /* Hide menu by default on smaller screens */
        flex-direction: column;
        position: absolute;
        top: 61px;
        /* Adjust according to navbar height */
        left: 0;
        background-color: #101a2894;
        width: 100%;
    }

    .menu.show {
        display: flex;
        /* Show menu when checkbox is checked */
    }

    .menu li {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
        /* Show menu icon on smaller screens */
    }
}

.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    color: white;
    font-size: 1.5rem;
    text-align: justify;
    justify-content: space-between;
    margin-right: 20px;
    /* Adjust the value as needed */
    width: 170px;
}


/* Adjust spacing on smaller screens */
@media (max-width: 768px) {
    .logo {
        margin-right: 130px;
        /* Less space on smaller screens */
    }

    .menu-icon {
        margin-left: 10px;
    }
}



.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff;
}

/* Hero section */



.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}



/* Rest of the CSS... */

/* Media queries */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        left: 0;
        padding: 10px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        color: white;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: 'Unbounded', sans-serif;
    background-color: #e9f1f4;
}



/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
    object-fit: cover;
    /* Ensures the video covers the entire area */
    pointer-events: none;
    /* Prevents interaction with the video */
}

.hero-title {
    font-size: 3rem;
    font-weight: bolder;
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 4;
    /* Content is above the overlay */
}



/* Features section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-work {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Creates three columns of equal width */
    grid-gap: 20px;
    /* Space between grid items */
    max-width: 1200px;
    /* Optional: max width of the grid container */
    margin: auto;
    /* Centers the grid in the section */
}

.feature-work img {
    width: 100%;
    /* Each image will take up the full width of its cell */
    height: auto;
    /* Maintains aspect ratio */
}

@media (max-width: 768px) {

    /* Adjustments for smaller screens */
    .feature-work {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns on smaller screens */
    }
}

@media (max-width: 480px) {

    /* Adjustments for mobile screens */
    .feature-work {
        grid-template-columns: 1fr;
        /* One column on very small screens */
    }
}



/* Contact section */
.contact {
    padding: 50px 0;
    text-align: center;
}

.contact form {
    margin-bottom: 20px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
}

.contact form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

/* Footer section */
.footer {
    background-color: #101a28;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    /* This pushes the footer to the bottom */
}

.social-links a {
    color: white;
    margin: 0 10px;
}

/* Media queries */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        margin-bottom: 30px;
    }
}


/* Base styles for the navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #101a2800;
    color: white;
}

.menu-toggle {
    display: none;
    /* Hide checkbox */
}

.menu-icon {
    display: none;
    /* Will be displayed on smaller screens */
    cursor: pointer;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu {
        display: none;
        /* Hide menu on smaller screens */
        width: 100%;
    }

    .menu-icon {
        display: block;
        /* Show menu icon on smaller screens */
    }

    .menu ul {
        flex-direction: column;
    }

    .menu-toggle:checked + .menu-icon + .menu {
        display: flex;
        /* Show menu when toggle is checked */
        flex-direction: column;
    }
}



/* Video overlay to darken the background video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark transparent overlay */
    z-index: 3;
    /* Overlay is above the video */
}


.contact-us-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 25px;
    background-color: #FFEB3B;
    /* Button color - use your primary color */
    color: #151d22;
    /* Button text color */
    text-decoration: none;
    /* Removes underline from links */
    text-transform: uppercase;
    /* Optional: makes all letters uppercase */
    border-radius: 5px;
    /* Optional: rounds the corners of the button */
    transition: background-color 0.3s ease;
    /* Smooth transition for hover effect */
    font-weight: 800;
    font-family: Montserrat;
}

.contact-us-button:hover {
    background-color: #0056b3;
    /* Darker shade for hover effect */
    color: #ffffff;
    /* Optional: change text color on hover */
}

.wolfix {
    width: 70%;
}

/* Adjust spacing on smaller screens */
@media (max-width: 768px) {
    .wolfix {
        width: 90%;
        /* Less space on smaller screens */
    }