* {
    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 */
.poppins {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.podkova-font {
    font-family: "Podkova", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.d-lg-block {
    display: block;
}

.d-lg-none {
    display: none;
}

.fw-600 {
    font-weight: 600;
}

.my-lg {
    margin: 50px 0;
}

.founder-name-custom:hover {
    font-size: 2em;
    font-weight: 600;
    color: #145a32;
}

/* <================================= 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-color: #F9F9F6;
    padding: 80px 10px;
    font-family: "Inter", sans-serif;
    text-align: center;
    color: #145a32;
}

.banner-heading {
    font-size: 4vw;
    font-weight: bold;
    white-space: pre-line;
}

.banner-text {
    white-space: pre-line;
}

.cta-btns {
    /* display: flex;
    justify-content: space-around;
    align-items: baseline; */
    margin-top: 40px;
    width: 40%;
    margin: auto;
}

.cta-btns a {
    display: block;
    background-color: #145a32;
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
}

.cta-btns a:hover {
    background-color: #d14e00;
    color: white;
}


/* Who We Are */
.who-we-are {
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding: 20px;

}

.who-we-are h3 {
    text-align: center;
    color: #145a32;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 46px;
}

/* .who-we-are p {} */

/* What We Believe */
.what-we-believe {
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding: 20px;
}

.what-we-believe h3 {
    text-align: center;
    color: #145a32;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 46px;
}

/* .what-we-believe p {} */

.what-we-believe p span {
    font-size: 30px;
    font-weight: bold;
    color: #145a32;
    font-family: "Podkova", serif;
}

/* Where We Focus */
.where-we-focus {
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.where-we-focus h3 {
    text-align: center;
    color: #145a32;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 46px;
}

.where-we-focus p {
    text-align: center;
    padding: 20px;
}

.business-criteria {
    padding: 10px;
    background-color: #145a32;
    color: white;
    border-radius: 0;
}

.business-criteria h5 {
    color: #145a32;
    font-family: "Poppins", sans-serif;
    text-align: center;

}

.criteria-icon-and-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 32%;
    margin: auto;
}

.criteria {
    margin: 20px 0;
    text-align: left;
}

.criteria i {
    display: block;
    font-size: 2vw;
    color: #79EFBC;
    background-color: #074a24;
    padding: 20px 30px;
    border-radius: 50%;
}

.criteria h5 {
    color: white;
    font-family: "Poppins", sans-serif;
}

.criteria p {
    display: none;
}

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

.founder-profile h3 {
    font-weight: bold;
    color: #145a32;
}

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

.founder-profile-container img {
    border-radius: 10px;
    margin: 0;
}

.founder-text {
    padding: 50px;
}

/* .founder-text p {} */

.founder-text a {
    display: inline-block;
    margin-top: 40px;
    background-color: #145a32;
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    font-weight: bold;
    border-radius: 10px;
}


/* Footer */


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

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


/* <=========================== RESPONSIVE (Mobile Screens) =================================> */
@media screen and (max-width: 1000px) {

    /* Utility Classes */
    .d-lg-block {
        display: none;
    }

    .d-lg-none {
        display: block;
    }

    .my-lg {
        margin: 0;
    }

    /* 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-color: #F9F9F6;
        padding: 80px 10px;
        font-family: "Inter", sans-serif;
        text-align: center;
        color: #145a32;
    }

    .banner-heading {
        font-size: 8vw;
        font-weight: bold;
        white-space: pre-line;
    }

    .banner-text {
        white-space: pre-line;
    }

    .cta-btns {
        /* display: flex;
        justify-content: space-around;
        align-items: baseline; */
        margin-top: 40px;
        width: 100%;
        margin: 0;
    }

    .cta-btns a {
        display: block;
        border: 2px solid #145a32;
        background-color: white;
        text-decoration: none;
        color: #145a32;
        padding: 10px 20px;
        border-radius: 20px;
        font-weight: bold;
    }

    .cta-btns a:hover {
        background-color: white;
        color: #145a32;
        border: 2px solid #145a32;
        transition: border 2s ease-in;
    }






    /* company profile card */
    .company-card {
        background-color: #F9F9F6;
        margin: 10px;
        padding: 10px;
        font-family: "Poppins", sans-serif;
    }

    .company-image-container {
        margin-bottom: 30px;
    }

    .company-title {
        font-weight: 700;
    }

    .company-subtitle {
        color: #635F5F;
    }

    .company-site-link {
        color: #D2B26D;
    }

    .company-image {
        width: 250px;
        height: 100px;
    }

    .company-card p {
        margin: 40px 0;
    }

    .ceo-profile {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: 40px;
    }

    .company-card .ceo-image {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    /* Who We Are */
    .who-we-are {
        font-family: "Poppins", sans-serif;
        text-align: center;
        padding: 20px;

    }

    .who-we-are h3 {
        text-align: center;
        color: #145a32;
        font-weight: bold;
        text-transform: capitalize;
        font-size: 26px;
    }

    /* .who-we-are p {} */

    /* What We Believe */
    .what-we-believe {
        font-family: "Poppins", sans-serif;
        text-align: center;
        padding: 20px;
    }

    .what-we-believe h3 {
        text-align: center;
        color: #145a32;
        font-weight: bold;
        text-transform: capitalize;
        font-size: 26px;
    }

    /* .what-we-believe p {} */

    .what-we-believe p span {
        font-size: 30px;
        font-weight: bold;
        color: #145a32;
        font-family: "Podkova", serif;
    }

    /* Where We Focus */
    .where-we-focus {
        font-family: "Poppins", sans-serif;
        text-align: left;
    }

    .where-we-focus h3 {
        text-align: center;
        color: #145a32;
        font-weight: bold;
        text-transform: capitalize;
        font-size: 26px;
    }

    .where-we-focus p {
        text-align: center;
        padding: 20px;
    }

    .business-criteria {
        padding: 30px 10px;
        background-color: #145a32;
        color: white;
        border-radius: 40px;
    }

    .business-criteria h5 {
        color: #145a32;
        font-family: "Poppins", sans-serif;
        text-align: center;

    }

    .criteria-icon-and-text {
        display: block;
        width: 100%;
        margin: 0;
    }

    .criteria {
        margin: 0;
    }

    .criteria i {
        display: block;
        font-size: 20vw;
        color: #79EFBC;
        text-align: center;
        padding: 0;
        border-radius: 0;
        background: none;
    }

    .criteria h5 {
        color: white;
        font-family: "Poppins", sans-serif;
        margin: 10px 0;
        text-align: center;

    }

    .criteria p {
        display: block;
        font-weight: 200;
        font-family: "Poppins", sans-serif;
        text-align: center;
    }

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

    .founder-profile h3 {
        font-weight: bold;
        color: #145a32;
    }

    .founder-profile-container {
        display: block;
    }

    .founder-profile-container img {
        border-radius: 10px;
        margin: 40px 0;
    }

    .founder-text {
        margin: 30px 0;
    }

    /* .founder-text p {} */

    .founder-text a {
        display: block;
        margin-top: 40px;
        background-color: #145a32;
        color: white;
        text-decoration: none;
        padding: 20px 40px;
        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;
    }
}