/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #000, #004e92);
    color: #fff;
}

/* TEMPORARY */

/* Top Banner */
.top-banner {
    text-align: center;
    background-color: #004e92;
    padding: 10px 0;
}

.banner-image {
    max-width: 100%;
    height: auto;
}

/* Common Navbar */
.common-navbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.navbar-html {
    width: 100%;
    height: 50px;
    border: none;
}

/* END TEMPORARY -- */





header {
    text-align: center;
    padding: 20px;
    background-color: #003366;
}

header h1 {
    font-size: 2.5rem;
}

.top-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #002244;
}

.top-menu ul li {
    margin: 0 15px;
}

.top-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

#projfolio{
    margin-right: 15px;
    padding: 30px 0;
}

.proj-intro1{
    text-align: center;
    color: #39fdaf;
}

.project-section {
    margin: 20px auto;
    padding: 20px;
    max-width: 90%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.project-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #f4f40d;
}

.project-section .project-image {
    display: block;
    margin: 0 auto 15px;
    max-width: 100%;
    border-radius: 8px;
}





table {
    width: 80%;
    border-collapse: collapse;
    margin-top: 30px;
    margin-left: 40px;
    margin-right: 40px;
    padding-right: 40px;
}

thead {
    background-color: #003366;
}

thead th {
    padding: 10px;
    text-align: left;
}

tbody tr:nth-child(odd) {
    background-color: #001f3f;
}

tbody tr:nth-child(even) {
    background-color: #004e92;
}

tbody td {
    padding: 10px;
    text-align: left;
}

a {
    color: #00ccff;
    text-decoration: underline;
}

a:hover {
    color: #66d9ff;
}

/*  CERTIFICATIONS TABLE ---*/
.proj-table {
    width: 93%;
    margin-left: 40px;
    margin-right: 40px;
    padding-right: 40px;
    border-collapse: collapse;
    border: 1px solid #ccc;
    background-color: #001f3f; /* Slightly lighter blue for the table background */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.proj-table th, .proj-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ccc;
    color: #fff; /* White text inside the table */
}

.proj-table th {
    background-color: #004080; /* A brighter shade of blue for the header */
    color: #fff;
    font-weight: bold;
}

.proj-table tr:nth-child(even) {
    background-color: #003366; /* Alternating row color */
}

.proj-table a {
    color: #00ffff; /* Bright yellow for links */
    text-decoration: none;
    font-weight: bold;
}

.proj-table a:hover {
    text-decoration: underline;
    color: #ffcc00; /* Light cyan hover color for links */
}


/* Column width styling */
.proj-table th:first-child,
.proj-table td:first-child {
    width: 10%;
    text-align: center;
}

.proj-table th:nth-child(2),
.proj-table td:nth-child(2) {
    width: 70%;
}

.proj-table th:last-child,
.proj-table td:last-child {
    width: 20%;
    text-align: center;
}

/*  PROJECT OVERVIEW BULLETING --*/
.project-overview {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #021427; /* A brighter shade of blue for the header */
/*    background: linear-gradient(to bottom, #000, #004e92);
    color: #fff; */
 /*   background-color: #fff; */
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.project-overview h1 {
    font-size: 1.5em;
    color: #eef4de;
    margin-bottom: 10px;
}

.project-overview ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.project-overview li {
    font-size: 1.1em;
    color: #e5ebef;
    margin-bottom: 8px;
}

.intro{
    margin: 0 40px;
    padding-left: 40px;
    color: rgb(231, 230, 243);
}

.proj-col-1{
    flex-basis: 25%;
    margin-left: 40px;
}

.proj-col-1 img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}

.proj-col-1 img{
    width: 95%;
    border-radius: 15px;
}

.proj-col-1:hover img{
    transform: scale(1.1);
}

.proj-col-1:hover .layer{
    height: 100%;
}

.proj-col-2{
    margin-top: 20px;
    flex-basis: 65%;
    margin-right: 20px;
    display: flex;
}

.proj-col-2 .sub-title{
    font-size: 3em;
    font-weight: 600;
    
}

.glow{
    font-weight: bold;
    color:#e5f7b8 
}



/*---------SMALL SCREEN ------------*/

/* ---------- GLOBAL STYLES (Default for all screens) ---------- */

.show-menu-img,
.hide-menu-img {
    display: none;
}

/* Prevent abnormal size on large screens */
.hide-menu-img img {
    width: 1px;
    height: auto;
}

  @media screen and (max-width: 768px) {
    .show-menu-img {
        display: inline-block;
        cursor: pointer;
    }

    .show-menu-img img:hover {
        background-image: linear-gradient(to right, cyan, blue);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        border-radius: 8px;
        opacity: 0.95;
    }

    .hide-menu-img img:hover {
        background-image: linear-gradient(to right, cyan, blue);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        border-radius: 8px;
        opacity: 0.95;
    }


    .show-menu-img {
        list-style-type: none;
        text-align: center;
        margin-top: 10px;
        padding-right: 10px;
        align-items: center;
    }


    .show-menu-img img {
        width: 140px; /* Adjust to fit your layout */
        cursor: pointer;
        transition: opacity 0.3s ease;
       align-self: start;
    }

    .hide-menu-img {
        list-style-type: none;
        text-align: right;
        margin-top: 10px;
        padding-right: 10px;
    }


    .hide-menu-img img {
        width: 140px; /* Adjust to fit your layout */
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    /* Apply hover effect to all list items in the menu, excluding image buttons */
    ul.menu li:not(.hide-menu-img):not(.show-menu-img) a {
        display: block;
        padding: 10px 15px;
        color: #fff; /* Customize as needed */
        text-decoration: none;
        transition: background 0.3s ease;
    }
    
    /* Gradient hover effect */
    ul.menu li:not(.hide-menu-img):not(.show-menu-img) a:hover {
        background: linear-gradient(to right, blue, yellow);
        color: #00ffff; font-weight: bold; /* Optional: adjust text color on hover */
    }
                

           .proj-col-2{
            margin-top: 20px;
            flex-basis: 85%;
            margin-right: 14px;
            display: flex;
            font-size: 14px;
            line-height: 1.6em;
        }
 
            table tr, 
            table td {
            font-size: 14px;
        }

        p,
        ul,
        ol,
        li {
        font-size: 14px;
        }

        h1 {
            font-size: 24px;
        }
         
        h2 {
                font-size: 22px;
            }
    
            h3 {
                font-size: 20px;
        }



  }