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

:root {
    --main-app-color: #145a32;
    /*deep emerald */
    --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;
}

/* Investors Banner */
.investors-banner {
    background-color: #145a32;
    color: white;
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding: 20px;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.investors-banner h2 {
    font-weight: bold;
    font-size: 3em;
}

/* Founder Profile */
.founder {
    padding: 20px;
    font-family: "Poppins", sans-serif;
    text-align: center;

}

.founder h4 {
    font-weight: bold;
    color: #145a32;
    line-height: 40px;
    margin-bottom: 40px;
}

.founder img {
    border-radius: 10px;
}

.founder h5 {
    font-weight: bold;
}



/* 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;
}


/* Our Investors */
.our-investors {
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding: 20px;
}

.our-investors-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.investor-profile {
    margin: 20px 0;
}

.investor-profile img {
    border-radius: 50%;
}

.investor-name {
    font-weight: bold;
}

.investor-description {
    font-size: 15px;
}

/* .investor-description {} */

/* Contact Us Banner */
.contact-us-banner {
    background-color: #145a32;
    color: white;
    text-align: center;
    font-family: "Poppins", sans-serif;
    padding: 40px;
    margin-bottom: 40px;
}

.contact-us-banner h2 {
    font-weight: bold;
    font-size: 3em;
    margin-bottom: 40px;
}

.contact-us-banner q {
    font-style: italic;
}

.contact-us-banner a {
    display: block;
    width: 30%;
    margin: 40px auto 0 auto;
    background-color: white;
    padding: 10px 15px;
    color: #145a32;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
}

/* 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: 1000px) {

    /* 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;
        gap: 0.5rem;
        display: none;
    }

    .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;
    }


    /* Investors Banner */

    .investors-banner {
        background-color: #145a32;
        color: white;
        font-family: "Poppins", sans-serif;
        text-align: center;
        padding: 20px;
        height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .investors-banner h2 {
        font-weight: bold;
        font-size: 2em;
    }

    /* Founder Profile */
    .founder {
        padding: 20px;
        font-family: "Poppins", sans-serif;
        text-align: center;

    }

    .founder h4 {
        font-weight: bold;
        color: #145a32;
        line-height: 40px;
        margin-bottom: 40px;
    }

    .founder img {
        border-radius: 10px;
    }

    .founder h5 {
        font-weight: bold;
    }

    /* 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;
    }

    /* Our Investors */
    .our-investors {
        font-family: "Poppins", sans-serif;
        text-align: center;
        padding: 20px;
    }

    .our-investors-row {
        display: block;
    }

    .investor-profile {
        margin: 20px 0;
    }

    .investor-profile img {
        border-radius: 50%;
    }

    .investor-name {
        font-weight: bold;
    }

    /* .investor-description {} */

    /* Contact Us Banner */
    .contact-us-banner {
        background-color: #145a32;
        color: white;
        text-align: center;
        font-family: "Poppins", sans-serif;
        padding: 40px;
    }

    .contact-us-banner h2 {
        font-weight: bold;
        font-size: 2em;
        margin-bottom: 40px;
    }

    .contact-us-banner q {
        font-style: italic;
    }

    .contact-us-banner a {
        display: block;
        width: 80%;
        margin: 40px auto 0 auto;
        background-color: white;
        padding: 10px 15px;
        color: #145a32;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: bold;
        border-radius: 10px;
    }

    /* 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;
    }
}