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

:root {
    --main-app-color: #145a32;
    --background-off-white: #f9f9f6;
    --burnt-orange: #d35400;
    --slate-grey: #2c3e50;
}

/* Utility classes */

/* <=============================================== Large Screens ===================================> */
.navbar {
    font-family: "Poppins", sans-serif;
    background-color: #d14e00;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 32px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.75;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    background-color: white;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 999;
}

.dropdown-content a {
    color: black;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f2f2f2;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* LinkedIn Icon */
.linkedin-icon i {
    color: #0a66c2;
    font-size: 36px;
}

/* Banner */
.banner {
    background: url("assets/Gimbiya\ Capital\ search\ fund\ banner\ bg.jpg");
    height: 70vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.banner h3 {
    text-transform: capitalize;
    font-size: 5em;
}

/* Main Section Heading (Big)  */
.how-we-work-headings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #145a32;
    color: white;
    font-family: "Poppins", sans-serif;
    margin: 20px 0;
}

.left-bar-and-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* outline: 1px solid #145a32; */
}

.left-bar {
    background-color: #d35400;
    width: 5px;
    height: 80px;
}

.left-bar-and-heading .heading {
    font-size: 30px;
    font-weight: bold;
    margin-left: 15px;
}

.heading-text {
    font-size: 20px;
}

/* Investment Criteria */
.investment-criteria {
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.investment-criteria h2 {
    text-transform: capitalize;
    color: #145a32;
    font-weight: bold;
}

.investment-criteria h3 {
    text-transform: capitalize;
    color: #145a32;
    font-weight: bold;
}

.creteria-box-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.criteria-box {
    margin: 50px 0;
}

.criteria-icon-box {
    background-color: #D9F3E4;
    width: 100px;
    margin: 20px auto;
    border-radius: 10px;
}

.criteria-icon-box i {
    font-size: 50px;
    color: #145a32;
}

.criteria-box h5 {
    font-weight: bold;
    margin-bottom: 20px;
}

.criteria-box h6 {
    color: #635F5F;
}

.criteria-box p {
    color: #635F5F;
}

/* Footer */
.footer-container {
    /* padding: 20px; */
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: white;
}

.footer-container img {
    width: 400px;
    height: 200px;
}

.footer-bottom {
    margin-top: 20px;
    background-color: #d35400;
    padding: 20px;
    background: url("assets/footer-bg.png");
    background-size: cover;
    background-position: center;
    color: black;
}

.footer-bottom h2 {
    font-weight: bold;
}


/* <============================================ Small Screens =============================================> */
@media screen and (max-width:800px) {

    /* Navbar */
    .nav-links {
        position: absolute;
        top: 64px;
        right: 1rem;
        background: white;
        color: black;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem 0 1.5rem;
        border-radius: 8px;
        display: none;
        gap: 0.5rem;
    }

    .nav-links a,
    .dropbtn {
        color: black;
        padding: 0.5rem 0;
    }

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

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: none;
        padding-left: 1rem;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: flex;
    }

    .hamburger {
        display: flex;
    }


    /* Banner */
    .banner {
        background: url("assets/Gimbiya\ Capital\ search\ fund\ banner\ bg.jpg");
        height: 70vh;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-family: "Poppins", sans-serif;
        text-align: center;
    }

    .banner h3 {
        text-transform: capitalize;
        font-size: 2em;
    }

    /* Main Section Heading (Big)  */
    .how-we-work-headings {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #145a32;
        color: white;
        font-family: "Poppins", sans-serif;
    }

    .left-bar-and-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* outline: 1px solid #145a32; */
    }

    .left-bar {
        background-color: #d35400;
        width: 5px;
        height: 80px;
    }

    .left-bar-and-heading .heading {
        font-size: 20px;
        font-weight: bold;
        margin-left: 15px;
    }

    .heading-text {
        font-size: 10px;
    }

    /* Investment Criteria */
    .investment-criteria {
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    .investment-criteria h2 {
        text-transform: capitalize;
        color: #145a32;
        font-weight: bold;
    }

    .investment-criteria h3 {
        text-transform: capitalize;
        color: #145a32;
        font-weight: bold;
    }

    .creteria-box-container {
        display: block;
    }

    .criteria-box {
        margin: 50px 0;
    }

    .criteria-icon-box {
        background-color: #D9F3E4;
        width: 100px;
        margin: 20px auto;
        border-radius: 10px;
    }

    .criteria-icon-box i {
        font-size: 50px;
        color: #145a32;
    }

    .criteria-box h5 {
        font-weight: bold;
        margin-bottom: 20px;
    }

    .criteria-box h6 {
        color: #635F5F;
    }

    .criteria-box p {
        color: #635F5F;
    }

    /* Footer */
    .footer-container {
        /* padding: 20px; */
        text-align: center;
        font-family: "Poppins", sans-serif;
        color: white;
    }

    /* .footer-container img {} */

    .footer-bottom {
        margin-top: 20px;
        background-color: #d35400;
        padding: 20px;
        background-size: contain;
    }

    .footer-bottom h2 {
        font-weight: bold;
    }

}