body {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom,
            #dbfaf6 0%,
            #fffcf4 18%);
}

h1,
h2,
h3,
h4 {
    font-family: "Lato";
    color: #14183e;
}

p,
li {
    font-family: "poppins";
    color: #5e6282;
}

.footer .footer-logo-motto {
    color: white;
}

.who-we-are,
.join-our-community-h3 {
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 3.5rem !important;
}

.who-we-are {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.copyright {
    color: black !important;
}

/*================== Making Navbar white instead of the default transparent style.=======================*/

.navbar-container {
    color: black;
    background-color: #ffffff;
}

.navbar-container a {
    color: black;
}

.navbar-container button {
    background-color: #000000;
    box-shadow: none
}

.nav-link-2 {
    font-weight: bold;
    color: rgb(38, 102, 10) !important;
}

/* ============================== Content ============================== */
.intro-and-cards-div {
    width: 100%;
    margin: auto;
}

.about-us {
    align-self: center;
    display: flex;
    justify-content: center;
    /* Horizontally centers content */
    align-items: center;
    /* Vertically centers content */
    min-height: 80vh;
    max-width: 75%;
    /* Sets a minimum height for the section */
    padding: 2rem 1rem;
    margin-top: 0px !important;
    padding-top: 12rem;
    /* Adds some padding for smaller screens */
}

.text-section {
    width: 100%;
    max-width: 100%;
    /* Allows the section to be flexible */
    /* Sets a max-width for readability */
}

.text-section h1 {
    text-align: left;
    /* Aligns heading to the left as in the image */
    margin-bottom: 1rem;
    /* Adds space below the heading */
    font-size: 3rem;
}

.text-section p {
    font-size: 1.7rem;
    text-align: justify;
    /* Justifies the paragraph text */
}

.text-section h1 {
    font-size: 5rem;
    font-weight: 500;
}

.text-section h2 {
    font-size: 3.5rem;
}

.text-section h3 {
    font-size: 3rem;
    font-weight: 600;
}

.text-section h4 {
    font-size: 2rem;
    font-weight: 500;
}

.text-section li {
    font-size: 1.7rem;
}

/* ============================== ============================ ============================== */

/* ============================== RESPONSIVE MEDIA QUERIES ============================== */
@media (max-width: 1638px) {}

@media (max-width: 1550px) {}

@media (max-width: 1440px) {

    :root {
        font-size: 12px;
    }
}


@media (max-width: 1300px) {}

@media (max-width: 1024px) {

    body {
        overflow-x: hidden;
    }

    :root {
        font-size: 10px;
    }

    .navbar {
        font-size: 1rem;
    }

    #navbarHamburger {
        display: block;
        outline: none;
        border: 0;
        width: 5rem;
        background-color: var(--secondary-color);
        color: white;
    }

    .navbar {
        position: relative;
        margin: 0;
        padding: 0 2rem;
        /* background-color: var(--primary-color); */
    }

    .toggle-btn {
        display: block;
    }

    .navbar-links {
        display: none;
        font-size: 1.6rem;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 6rem;
        z-index: 11;
        width: 100%;
        background: white;
        padding: 10px;
        margin-top: 10px;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.151);
        /* hide by default */
    }

    .navbar-links.show {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 2rem;
        gap: 2rem;
        width: 100%;
        right: 0;
        transform: scaleY(1);
        opacity: 1;
    }

    .navbar-links a {
        color: black;
    }

    .navbar-links.active {
        position: absolute;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
        z-index: 21;
        top: 5rem;
        right: 0;
        width: 100%;
        /* border: 1px solid black; */
        box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.151);
        background-color: var(--background-color);
        margin-top: 10px;
        padding: 10px 0;
        /* show when active */
    }

    .about-us-our-mission-section {
        gap: 3rem;
    }

}

@media (max-width: 840px) {

    body {
        overflow-x: hidden;
    }

    .about-us-our-mission-section {
        width: 90%;
        flex-direction: column;
    }

    .text-section {
        width: 100%;
    }
}

@media (max-width: 740px) {}

@media (max-width: 600px) {

    :root {
        font-size: 8px;
    }

    body {
        overflow-x: hidden;
    }

    #navbarHamburger {
        display: block;
        outline: none;
        border: 0;
        width: 5rem;
        /* background-color: var(--background-color); */
    }

    .navbar {
        position: relative;
        margin: 0;
        padding: 0 2rem;
        /* background-color: var(--primary-color); */
    }

    .toggle-btn {
        display: block;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 5rem;
        z-index: 11;
        gap: 10px;
        width: 100%;
        background: var(--background-color);
        padding: 10px;
        margin-top: 10px;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.151);
        /* hide by default */
    }

    .navbar-links.show {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 2rem;
        gap: 2rem;
        width: 100%;
        right: 0;
        transform: scaleY(1);
        opacity: 1;
    }

    .navbar-links a {
        color: black;
    }

    .navbar-links.active {
        position: absolute;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
        z-index: 21;
        top: 5rem;
        right: 0;
        width: 100%;
        /* border: 1px solid black; */
        box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.151);
        background-color: var(--background-color);
        margin-top: 10px;
        padding: 10px 0;
        /* show when active */
    }
}

@media (max-width: 500px) {
    body {
        overflow-x: hidden;
    }

    .socials.socials-svg-container {
        flex-direction: column;
    }

    .socials.socials-svg-container svg {
        width: 12px;
        height: 12px;
    }
}



/* ==================================================================================== */
/* ==========================OUR MISSION, VISION CARDS================================= */
/* ==================================================================================== */

.about-us-row-2 {
    display: flex;
    justify-content: center;
    position: relative;
    gap: 2rem;
    width: 100%;
    align-self: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-us-row-2-cards {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.about-us-row-2-card {
    display: flex;
    padding: 1.5rem;
    padding-bottom: 5rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: fit-content;
    width: 25%;
    background-color: white;
    border-radius: 20px;
    border: 1px solid #cfe4c6;
    box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.151);
}

.about-us-row-2-card-header {
    display: flex;
    background-color: #e6f4de;
    border-radius: 10px;
    width: 90%;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.about-us-row-2-card-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.about-us-row-2-card-header-image {
    width: 3rem;
    height: 3rem;
}

.about-us-row-2-card-description {
    margin-top: 2rem;
    font-size: 1.6rem !important;
    text-align: left !important;
    color: #5e6282;
    width: 90%;
    line-height: 3rem;
}


.our-domains-h2 {
    padding-top: 10rem;
    text-align: center;
    margin: 0;
    margin-bottom: 5rem;
    font-size: 3.5rem;
    font-weight: 600 !important;
}

.about-us-illust-text-main-container {
    padding: 5rem 0rem;
    padding-bottom: 0rem;
    display: flex;
    flex-direction: column;
}

.about-us-illust-text-main-container h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-left: -20px;
}

.about-us-illust-row-1 {
    padding-top: 0;
}

.illust-and-text-container-1 {
    gap: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illust-and-text-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.left-illust {
    width: 25%;
}

.left-illust-4 {
    width: 35%;
}

.right-text-4 {
    width: 65%;
}

.left-illust-5 {
    width: 30%;
}

.right-text-5 {
    width: 70%;
}

.right-text {
    width: 50%;
    line-height: 3.5rem;
}

.right-text h3 {
    font-size: 2.6rem;
    margin-top: 0;
}

.right-text li {
    font-size: 1.7rem;

}

.join-our-community {
    padding: 4rem 0;
    padding-bottom: 0;
    width: 75%;
    margin: auto;
}

.join-our-community p {
    font-size: 1.7rem;
}

.join-our-community h3 {
    text-align: center;
    font-size: 2.3rem;
    line-height: 4rem;
}

.science-meets-support {
    padding: 10rem 0;
    font-weight: 500 !important;
    color: #486e30 !important;
    text-align: center;
}


@media (max-width: 500px) {
    ul {
        padding-inline-start: 20px;
    }

    h3 {
        text-align: center;
    }

    .illust-and-text-container {
        flex-direction: column;
    }

    .left-illust {
        width: 90%;
    }

    .right-text {
        width: 90%;
    }
}

@media (max-width: 1440px) {
    .about-us-row-2-cards {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-us-row-2-card {
        width: 50%;
    }
}

@media (max-width: 1100px) {
    .about-us-row-2 {
        width: 95% !important;
    }
}


@media (max-width: 1100px) {}

@media (max-width: 930px) {}

@media (max-width: 850px) {
    .about-us-row-2-card {
        width: fit-content;
        max-width: 70%;
    }
}


@media (max-width: 600px) {

    .about-us-row-2-card {
        max-width: 85%;
    }

    .about-us-row-2 {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
        padding-top: 8rem;
    }
}


/* ================================================================================= */
/* ============================Our Domains & Services CAROUSEL===============================*/
/* ================================================================================= */
.our-domains-and-services-main-container {
    background: linear-gradient(#fffcf3, #eaf2ed);
    max-width: 100%;
    margin: auto;
    position: relative;
}

.our-domains-and-services {
    width: 70%;
    margin: auto;
    padding-bottom: 10rem;
}

.our-domains-and-services-background-image-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.our-domains-and-services-background-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}


.carousel-and-pagination-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.our-domains-and-services-swiper {
    width: 100%;
    height: 100%;
}

.our-domains-and-services-swiper-slide {
    background-position: center;
    background-size: cover;
}

.our-domains-and-services-swiper-slide img {
    display: block;
}

.our-domains-and-services-swiper {
    position: relative;
}

.our-domains-and-services-swiper-pagination {
    position: relative !important;
}

.our-domains-and-services-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.our-domains-and-services-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #15ac15 !important;

}

/* .left-illust {} */