* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    /* Default font for all text */
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F0F2F5;
    /* background-image: url("pics\\hex3.png"); */
    background-image: url("pics\\sky2.webp");
    background-size: cover;
}


.background-overlay {
    display: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Arial Black', sans-serif;
    color: #0168a6;
    letter-spacing: -1px;
}

#header {
    background-color: #858585;
    background-image: none;
    height: 100vh;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    margin-right: auto;
    width: 180px;
    height: auto;
    border-radius: 10px;
}

.logo-large {
    margin-right: auto;
    width: 550px;
    height: auto;
    max-width: 80%;
    display: block;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
}

nav ul li {
    margin: 0 5px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #0168a6;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.capability {
    display: flex;
    align-items: start;
    /* Align items at the top */
    box-sizing: border-box;
}

.capability img {
    vertical-align: bottom;
    display: inline-block;
    border-radius: 10px;
    margin: 50px 10px 10px 10px;
    width: 330px;
    height: auto;
    max-width: 400px;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: subtle shadow */
}

.capability-text {
    max-height: 350px;
    overflow: hidden;
    position: relative;
    /* Required for the fade-out effect */
    transition: max-height 0.4s ease-in-out;
}

.capability-text.expanded::after {
    opacity: 0;
}

.capability-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    /* background: linear-gradient(to top, white 20%, transparent); */
}

.capability-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.capability-text p {
    font-size: 20px;
    line-height: 1.6;
}

.capability-text ul {
    font-size: 18px;
    line-height: 1.6;
    padding-left: 20px;
}

.capability-text ol {
    font-size: 18px;
    line-height: 1.6;
    padding-left: 20px;
}

.capability-text ul li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}





.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-top: 50px;
}

.contact-content p {
    font-size: 18px;
    color: #333;
    display: inline-block;
}

.contact-text {
    display: inline-block;
}


.contact-content p i {
    color: #0168a6;
    margin-top: 5px;
    margin-right: 15px;
    vertical-align: top;
    font-size: 20px;
}

.social-icons {
    margin-top: 20px;
    margin-bottom: 10px;
}

.social-icons a {
    text-decoration: none;
    font-size: 24px;
    margin: 0 10px;
    color: #333;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover {
    color: #0168a6;
    transform: translateY(-5px);
}

.video-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.video-container video {
    max-width: 60%;
    height: auto;
    border-radius: 10px;
}

.video-overview-text {
    text-align: center;
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    height: 4px;
    width: 30px;
    background: #333;
    margin-bottom: 5px;
    border-radius: 5px;
}


.contact-page .contact-content {
    max-width: 1000px;
    /* Limit the width to make it more compact and centered */
    margin: 0 auto;
    /* Center the contact content */
}

.personnel {
    display: flex;
    align-items: start;
    max-width: 1500px;
}

.personnel img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
    margin-top: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.personnel-text {
    flex: 1;
    /* Allow text to take up remaining space */
    max-height: 350px;
    overflow: hidden;
    position: relative;
    /* Required for the fade-out effect */
    transition: max-height 0.4s ease-in-out;
}


.personnel-text.expanded::after {
    opacity: 0;
}

.personnel-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    /* background: linear-gradient(to top, white 20%, transparent); */
}

.personnel-text h2 {
    font-size: 24px;
    color: #0168a6;
    margin-bottom: 10px;
    font-family: 'Arial Black', sans-serif;
}

.personnel-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.tile-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    /* Space between tiles */
    padding: 120px 5% 80px;
    /* Padding to accommodate header */
    max-width: 100%;
    margin: 0 auto;
    /* Center the container */
}

.tile-container-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* Space between tiles */
    padding: 60px 5% 80px;
    /* Padding to accommodate header */
    max-width: 100%;
    margin: 0 auto;
    /* Center the container */
}

.tile-container p {
    padding: 0 0 10px 0;
}

.large-tile {
    grid-column: span 2;
    /* Make the large tile span across the entire width */
    background-color: #ffffff;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tile {
    background-color: #ffffff;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.tile h1,
.tile h2 {
    margin-bottom: 10px;
    text-align: center;
}

.tile p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}



.executive-summary h1 {
    font-size: 36px;
    color: #0168a6;
    font-family: 'Arial Black', sans-serif;
}

.capabilities-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin: 0 auto;
    /* Center the container */
}

.capabilities-column {
    flex: 1;
    /* Smaller column */
    line-height: 1.6;
    color: #333;
}

.capabilities-column h2 {
    margin-bottom: 10px;

}

.capabilities-column ul {
    padding-left: 20px;
}

.capabilities-column ul li {
    margin-bottom: 10px;
}


.toggle-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    color: #2563eb;
    margin: 0 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Design */

@media (max-width: 768px) {
    .capability {
        flex-direction: column;
        align-items: center;
    }

    .capability img {
        margin: 10px 10px 10px 10px;
    }

    .capabilities-columns {
        flex-direction: column;
        row-gap: 0px;
    }

    .capabilities-left-column,
    .capabilities-right-column {
        flex: 1;
        font-size: 18px;
    }

    .personnel {
        flex-direction: column;
        align-items: center;
    }

    .personnel img {
        width: 200px;
        height: auto;
        margin-right: 20px;
        margin-left: 20px;
        margin-top: 0px;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        /* Hide the nav links */
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 10px;
        background: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 200px;
        text-align: center;
    }

    nav ul.showing {
        display: flex;
        /* Show the nav links when active */
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-icon {
        display: flex;
    }
}

@media (max-width: 768px) {

    .tile {
        grid-column: span 2;
    }
}

/* @media (min-width: 1024px) {
    
    .tile-container-home {
        grid-template-columns: 1fr 1fr; 
    }

    .large-tile {
        grid-column: span 2;
    }

} */