﻿body {
    margin: 0;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #dcdcdc;
color: #696969;	

}

.content{
font-size: 1rem;


}
h3 {color: #575757;}
img {
 
}


.img_11 {
  filter:  grayscale(100%);
}

.header-image {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('images/equity.jpeg') no-repeat center center;
    background-size: cover;
    filter: grayscale(100%);
}


.footer-image {
    width: 100%;
    height: 200px;
    background: url('images/footer_004.jpeg') no-repeat center center;
    background-size: cover;
filter: grayscale(100%);
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(16 16 16);
    color: #f5f5f5;
    padding: 10px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    transition: background-color 0.3s;
}


    .navbar.scrolled {
      /*  background-color: rgba(255, 255, 255, 1);  Fully opaque white background */
    }

    .navbar .left, .navbar .right {
        display: flex;
        gap: 20px;
    }

.navbar a {
    color: #f5f5f5;
    text-decoration: none;
    padding: 8px 16px;
}


        .navbar a:hover {
            background-color: #313131;
        }



.header-message h1 {
    font-size: 3em;
    margin: 0;
}

.header-message p {
    font-size: 1.5em;
    margin: 0;
}

.content {
    padding: 40px;

    max-width: 66rem;
    margin: auto;
}


.title_container {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 2px solid #ffa500;
    margin-bottom: 2rem;
    margin-top: 4rem;
}


.octagon {
    width: 2rem;
    height: 2rem;
    background-color: orange;
    clip-path: polygon(30% 118%, 70% 10%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    margin-right: 20px;
}

.title {
    font-size: 24px;
    font-weight: bold;
}



.p_team {
    font-size: 1.5rem;
    color: #818181;
    padding: 3rem 3rem;
    margin-bottom: 4rem;
}






.footer {
    display: flex;
    justify-content: space-around;
    background-color: #292929;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}


    .footer .column {
        flex: 1;
        padding: 10px;
    }

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }

        .footer .column {
            width: 100%;
            text-align: center;
        }
}

.footer-two-columns {
    display: flex;
    justify-content: space-between;
    background-color: #444;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

    .footer-two-columns .left-column {
        flex: 1;
    }

    .footer-two-columns .right-column {
        flex: 1;
        text-align: right;
    }

@media (max-width: 768px) {
    .footer-two-columns {
        flex-direction: column;
        align-items: center;
    }

        .footer-two-columns .left-column, .footer-two-columns .right-column {
            width: 100%;
            text-align: center;
        }
}


.footerlogo {
    padding-left: 4rem;
}


.footeraddress {
    color: #bfbfbf;
    font-size: .85rem;
    padding: 2rem 4rem;
}


.footercopyright {
    font-size: .75rem;
    font-weight: 600;
    color: #bfbfbf;
    padding-left: 4rem;
}

.footerimp {
    padding-right: 4rem;
    text-align: right;
}

    .footerimp a {
        font-size: .75rem;
        font-weight: 600;
        text-decoration: none;
        color: #bfbfbf;
    }


.footer_privacy {
    text-decoration: none;
    color: #bfbfbf;
}





.header-message {
    position: absolute;
    top: 83%;
    left: 0;
    color: white;
    padding: 1rem 8rem;
    background-color: rgba(0, 0, 0, 0.5);
}


.card001_container {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card001_image, .card001_content {
    flex: 1 1 50%;
    box-sizing: border-box;
}

.card001_image {
    position: relative;
    overflow: hidden;
}

    .card001_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card001_content {
    padding: 4rem;
}

.card001_title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card001_text {
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .card001_image, .card001_content {
        flex: 1 1 100%;
    }
}


























        .bio-container {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            min-height: 400px;
            position: relative;
        }

            .bio-container.reverse {
                flex-direction: row-reverse;
            }

        .image-section, .text-section {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

            .image-section img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
                display: block;
            }

        .text-section {
            padding: 40px;
            background-color: #dcdcdc;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            .text-section h1 {
                margin-bottom: 20px;
                font-size: 2em;
                color: #1a1a1a;
            }

            .text-section p {
                margin-bottom: 16px;
                line-height: 1.6;
                color: #333;
            }

        .contact {
            margin-top: 20px;
        }

            .contact p {
                margin: 8px 0;
                font-size: 1em;
                color: #333;
                display: flex;
                align-items: center;
                gap: 8px;
            }

        .contact-icon {
            font-weight: 600;
            font-size: 1em;
            color: #555;
        }

        .contact a {
            font-weight: 600;
            color: #333;
            text-decoration: none;
        }

            .contact a:hover {
                color: #000;
            }

        .office-link,
        .form-link {
            cursor: pointer;
            font-weight: 600;
            color: #0077cc;
            margin-top: 10px;
        }

        .panel {
            position: absolute;
            top: 0;
            height: 100%;
            width: 50%;
            max-width: 500px;
            padding: 30px;
            box-sizing: border-box;
            transition: transform 0.4s ease;
            z-index: 10; /* default layer */
        }

            .panel.active-panel {
                z-index: 20; /* raised layer */
            }


        .slide-left {
            left: 0;
            transform: translateX(-100%);
        }

        .slide-right {
            right: 0;
            transform: translateX(100%);
        }

        .show-office .office-panel.slide-left,
        .show-office .office-panel.slide-right,
        .show-form .form-panel.slide-left,
        .show-form .form-panel.slide-right {
            transform: translateX(0);
    background: #3b3b3b;
        }

        .office-panel {
            background-color: #ececec;
        }

        .form-panel {
            background-color: #c3c3c3;
        }

        .panel h2 {
            margin-bottom: 10px;
            font-size: 1.5em;
            color: #222;
        }

        .form-panel form {
            display: flex;
            flex-direction: column;
        }

        .form-panel label {
            margin-top: 10px;
            font-weight: bold;
            color: #333;
        }

        .form-panel input,
        .form-panel textarea {
            margin-top: 6px;
            padding: 10px;
            border: 1px solid #aaa;
            border-radius: 4px;
            font-size: 1em;
        }

        .form-buttons {
            margin-top: 20px;
            display: flex;
            gap: 10px;
        }

            .form-buttons button {
                padding: 10px 20px;
                border: none;
                border-radius: 4px;
                font-weight: 600;
                cursor: pointer;
            }

        .send-btn {
            background-color: #0077cc;
            color: white;
        }

        .cancel-btn {
            background-color: #bbb;
            color: black;
        }

        .close-office,
        .close-form {
            margin-top: 20px;
            font-weight: bold;
            cursor: pointer;
            color: #555;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .bio-container,
            .bio-container.reverse {
                flex-direction: column;
            }

            .image-section {
                position: relative;
                width: 100%;
            }

                .image-section::before {
                    content: "";
                    display: block;
                    padding-top: 66.66%;
                }

                .image-section img {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center top;
                }

            .panel {
                width: 100%;
                max-width: none;
            }
        }




.close-office, .close-form {
    margin-top: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
    text-decoration: none;
    color: orange;
}


.panel h2 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #939393;
}



.form-panel label {
    margin-top: 10px;
    font-weight: bold;
    color: #b1b1b1;
}


.office-link, .form-link {
    cursor: pointer;
    font-weight: 600;
    color: #333333;
    margin-top: 10px;
}


.card001_container {
    display: flex;
    flex-wrap: wrap;
    background-color: #292929;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    color: #d7d7d7;
}




.content {
    padding: 40px;

    max-width: 88rem;
    margin: auto;
}


.button {
    margin-top: 15px;
    background: orange;
    color: #1e1e1e;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    /* text-transform: uppercase; */
    cursor: pointer;
    /* font-size: 1rem; */
}





























/* NEW STUFF */


.mn_top_navbar {
    position: relative;
    background-color: #333;
    color: white;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 1000;
}

    .mn_top_navbar a {
        color: white;
        text-decoration: none;
        margin: 0 0.5rem;
        font-size: 1rem;
        padding: 1rem;
    }

        .mn_top_navbar a:hover {
            text-decoration: none;
            color: #FFA500;
        }

.mn_top_left,
.mn_top_right {
    display: flex;
    align-items: center;
    padding-right: 2rem;
}

.mn_top_middle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .mn_top_middle img {
        height: 4rem;
    }

.mn_top_hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

    .mn_top_hamburger span {
        height: 3px;
        width: 25px;
        background: white;
        margin: 4px 0;
        border-radius: 2px;
        transition: background 0.3s ease;
    }

.mn_top_mobile_menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 90%;
    height: 100%;
    background-color: #444;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    transition: right 0.4s ease;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

    .mn_top_mobile_menu.show {
        right: 0;
    }

    .mn_top_mobile_menu a {
        color: white;
        text-decoration: none;
        margin: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #6b6b6b;
        padding-bottom: 1rem;
    }


        .mn_top_mobile_menu a:hover {
            text-decoration: none;
            color: #ffa500;
        }

@media (max-width: 1400px) {


    .mn_top_navbar {
    position: fixed;
    width: 100%;
    
    }


    .mn_top_left,
    .mn_top_right {
        display: none;
    }

    .mn_top_middle {
        position: static;
        transform: none;
        margin: 0;
    }

    .mn_top_navbar {
        justify-content: space-between;
    }

    .mn_top_middle img {
        height: 3rem;
    }

    .mn_top_hamburger {
        display: flex;
        padding-right: 2rem;
    }
}








/* FOOTER */



.footerlogo {
    padding-left: 4rem;
    padding-top: 3rem;
}





/* Footer 1 Styles */
.ft_1_footer {
    background-color: #222;
    color: white;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ft_1_column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .ft_1_column h3 {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .ft_1_column a {
        color: white;
        text-decoration: none;
        margin: 0.3rem 0;
        font-size: 1rem;
    }

        .ft_1_column a:hover {
            text-decoration: underline;
        }

@media (max-width: 1128px) {
    .ft_1_footer {
        grid-template-columns: 1fr;
    }

    .ft_1_column {
        margin-bottom: 2rem;
    }
}

/* Footer 2 Styles */
.ft_2_footer {
    justify-content: space-between;
    background-color: #444;
    color: white;
    padding: 20px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ft_2_column {
    display: flex;
    flex-direction: column;

}


.footercopyright2 {
    font-size: .75rem;
    font-weight: 600;
    text-decoration: none;
    color: #bfbfbf;
}

.ft_right {
    text-align: right;



}

.footerimp {
    padding-right: 4rem;
    text-align: right;
}

.ft_2_footer a:hover {
    text-decoration: none;
    color: #ffa500;
}

@media (max-width: 1128px) {
    .ft_2_footer {
        grid-template-columns: 1fr;
    }

    .ft_2_column {
        margin-bottom: 2rem;
    }


    .footercopyright {
        padding-left: 0;
        text-align: left;
    }
    .footerimp {

        text-align: left;
    }



    .footerlogo {
        padding-left: 1rem;
        padding-top: 3rem;
    }




    .footeraddress {
        color: #bfbfbf;
        font-size: .85rem;
        padding: 2rem 1rem;
    }













}































/* FIXES */

.header-image {
    position: relative;
    width: 100%;
    /*  height: calc(100vh - 80px); */
    height: 100vh;
    background-size: cover;
}


@media (max-width: 1400px) {

    .header-message {
        position: absolute;
        top: 70%;
        left: 0;
        color: white;
        
        padding: 1rem 1rem;
        font-size: 1rem;


        background-color: rgba(0, 0, 0, 0.5);
    }










    .header-image {
        position: relative;
        width: 100%;
        height: 100vh;
 
        background-size: cover;
    }






.header-message h1 {
    font-size: 2rem;
    margin: 0;
}


.text-section {
    padding: 1.25rem;
}


.text-section h1 {

    font-size: 1.6rem;

}

.card001_content {
    padding: 1rem;
}

.card001_text {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}





}

.mn_top_navbar {
    position: fixed;
    background-color: #333;
    color: white;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 1000;
    width: 100%;
}








.link_mail {
    color: #222222;
    font-weight: 600;
    text-decoration: none;
}




.phone {
  color: #d7d7d7;
  text-decoration: none;
}


a[href^="tel"] {
  color: #d7d7d7 !important;
  text-decoration: none !important;
}






.tog_33_button_wrap {
    display: flex;
    justify-content: flex-end;
    /* margin-bottom: 20px; */
    padding: 1rem 3rem;
}





.tog_33_box {
    width: 200px;
    padding: .75rem 1rem;
    background: #767676;
    color: white;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    /* margin-bottom: 20px; */
    user-select: none;
}


        .tog_33_content {
      
            background: #eee;
        
            display: none;
        }

     
        #tog_33_a {
            display: block;
        }

   
        @media (max-width: 700px) {
            /* Hide the toggle switch on mobile */
            #tog_33_switch {
                display: none;
            }

      
            #tog_33_a {
                display: none !important;
            }


            #tog_33_b {
                display: block !important;
            }
        }



































        .project_container {
            display: grid;
            grid-template-rows: auto 1fr;
            min-height: 100vh;
        }

        .project_header {
            background-color: #2c3e50;
            color: white;
            padding: 1.5rem;
            text-align: center;
            font-size: 2rem;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .project_main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
            gap: 1.5rem;
            padding: 2rem;
        }

        .project_card {
            display: grid;
            grid-template-rows: auto 1fr auto;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            padding: 1.5rem;
            min-height: 300px;
            transition: background-color 0.4s ease, transform 0.2s ease;
        }

            .project_card:hover {
                background-color: #afafaf;
cursor: pointer;
            }


            .project_card:hover .tbl_projects_td_right{
  
color: #fff;
            }


        .project_card_title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #34495e;
        }

        .project_card_body {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
            overflow-wrap: break-word;
        }

        .project_card_footer {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #888;
            border-top: 1px solid #eee;
            padding-top: 0.75rem;
        }

        @media (max-width: 600px) {
            .project_main {
                padding: 1rem;
            }
        }








/* Responsive override for smaller screens */
    @media (max-width: 1400px) {
        .header-image {
     /*        background-image: url('images/header_mobile.jpg'); Replace with your mobile image */
        }

        .logo_image {
            display: none; /* Hide logo on small screens */
        }

        .ft_2_footer {
            display: none;
        }

        .ft_3_footer {
            display: block;
        }



.header-message h1 {
    font-size: 2rem;
    margin: 0;
}

.header-message p {
    font-size: 1rem;
    margin: 0;
}


.project_card_title {
    font-size: 1rem;
}




.project_card_body {
    font-size: .85rem;
}


    }




