/* Base Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #d6d5c9;
    background-color: #0a100d; /* Default background for dark mode */
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh; /* Ensure body takes full height */
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ee3124;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.logo {
    font-size: 24px;
    color: #d6d5c9;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-bar {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

.menu-icon {
    display: none;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    flex-wrap: wrap;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #d6d5c9;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s;
    white-space: nowrap;  /* Prevents text wrapping */
}

.nav-links a:hover {
    background-color: #ee3124;
    border-radius: 5px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #ee3124;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh; /* Full viewport height */
    width: 100vw;  /* Full viewport width */
    color: #d6d5c9;
    text-align: center;
    display: flex;
    flex-direction: column; /* Ensure content aligns vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    overflow: hidden; /* Hide any overflow */
    background-color: #0a100d;
    overflow: hidden;
}

/* Background Video */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the hero section */
    z-index: 1;
    filter: brightness(0.5); /* Optionally dim the video for better text readability */
    pointer-events: none; /* Disable interactions with the video */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin: 0; /* Remove default margin */
}

.hero p {
    font-size: 1.5rem;
}

.cta-buttons {
    margin-top: 1rem;
}

.cta-button {
    background-color: #ee3124;
    color: #d6d5c9;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem;
    display: inline-block;
}


/* Sections */


.about-overview h2 {
    font-size: 2.5em;
    color: #ee3124;  /* Red color for section titles */
}

.about-overview p {
    font-size: 1.2em;
    line-height: 1.6em;
    /*color: #a22c29;  /* Red color for section titles */
}

.why-choose-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ee3124;  /* Light greyish color for section titles */
}

.why-choose-us li {
    font-size: 1.2em;
    line-height: 1.6em;
    /*color: #a22c29;  /* Red color for section titles */
}

.services h2{
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ee3124;
}
.services p{
    font-size: 1.2em;
    line-height: 1.6em;
}
.services a{
    color: #ee3124;
}

.news-updates h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ee3124;  /* Red color for section titles */
}

.news-updates p {
    font-size: 1.2em;
    line-height: 1.6em;
    /*color: #a22c29;  /* Red color for section titles */
}

.contact-us h2{
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ee3124;  /* Red color for section titles */
}

.contact-us p {
    font-size: 1.2em;
    line-height: 1.6em;
    /*color: #a22c29;  /* Red color for section titles */
}
.contact-us li {
    /*font-size: 1.2em;*/
    line-height: 2.0em;
    /*color: #a22c29;  /* Red color for section titles */
}

.cta-section h2{
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ee3124;  /* Red color for section titles */
}

.cta-section p {
    font-size: 1.08em;
    line-height: 1.6em;
    /*color: #a22c29;  /* Red color for section titles */
}  

.industries-served h2 {
    font-size: 2.5em;
    color: #ee3124;  /* Red color for section titles */
}
.industries-served p {
    font-size: 1.2em;
    line-height: 1.6em;
    /*color: #a22c29;  /* Red color for section titles */
}
.industry-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.industry-item {
    background-color: #ee3124;  /* Deep red for industry items */
    color: #d6d5c9;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    width: 30%;
}

.industry-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
section {
    padding: 2rem;
}

#about-section, #industries-section, #whyus-section, #services-section, #news-section, #careers-section, #contact-section {
    padding: 2rem;
    background-color: inherit;
    color: inherit;
}

/* Footer */
footer {
    background-color: #ee3124;
    color: #d6d5c9;
    padding: 1rem;
    text-align: center;
    position: relative;
    width: 100%;
    margin-top: auto; /* Pushes footer to the bottom of the page */
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #d6d5c9;
    margin: 0 0.5rem;
    text-decoration: none;
}

.footer-social img {
    width: 24px;
    height: 24px;
    margin: 0 0.5rem;
}

/* Base Styles for the Toggle Button */
#mode-toggle {
    background-color: #0a100d; /* Dark mode background color */
    color: #d6d5c9; /* Light text color for contrast */
    border: 2px solid #d6d5c9; /* Border color to match the text */
    padding: 0.5rem 1.5rem; /* Padding for a nice button size */
    border-radius: 25px; /* Rounded corners to mimic a switch */
    cursor: pointer;
    font-size: 1rem; /* Font size for readability */
    font-weight: bold; /* Bold text for emphasis */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s, transform 0.3s; /* Smooth transitions */
}

.email-link {
    color: #ee3124; /* Replace this with your desired color code */
    text-decoration: none; /* This removes the underline from the link */
}

.email-link:hover {
    color: #ee3124; /* Optionally, change color when hovering */
    text-decoration: underline; /* Optionally, add an underline on hover */
}

.map-container {
    width: 100%;
    max-width: 1000px; /* Adjust the maximum width */
    margin: 0 auto; /* Center the map */
    padding: 20px 0; /* Optional padding */
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}





/* Dark Mode */
.dark-mode {
    background-color: #0a100d;
    color: #edf2f4;
}

.dark-mode header {
    background-color: #ee3124;
    
}

.dark-mode footer {
    background-color: #ee3124;
    
}

/* Light Mode */
.light-mode {
    background-color: #edf2f4;
    color: #0a100d;
}

.light-mode header {
    background-color: #ee3124;
}

.light-mode footer {
    background-color: #ee3124;
}




/* Mobile Styles */
/*@media (max-width: 768px) {
    .nav-bar {
        display: none; /* Hide the desktop nav-bar on mobile */
    /*}

    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #902923;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        color: #d6d5c9;
        text-decoration: none;
        font-size: 1.2rem;
    }
}*/





/*rial runs*/


a.button {
    display: inline-block;
    background-color: #ee3124;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

