/* ========== FONTS ========== */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    --header-height: 3.5rem;
    --first-color: #7A462E;
    --second-color: #663823;
    --title-color: #443732;
    --text-color: #2c2420;
    --body-color: #F2EDE3;
    --container-color: #fff;
    --button: #7A462E;
    --button-hover: #582d19;
    /* Font */
    --heading-font: "Lato", sans-serif;
    --body-font: "Poppins", sans-serif;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --font-medium: 500;
    --font-semi-bold: 600;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 3.5rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}
/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

body {
    margin: var(--header-height) 0 0 0;
    background-color: var(--body-color);
    color: var(--text-color);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--title-color);
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    padding: 5.5rem 0 1rem;
}
.section__title, .section__title-center {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
    line-height: 140%;
}
.section__title-center, .section__title-center-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
}

.main {
    overflow: hidden;
}

/*=============== BUTTONS ===============*/
.button {
    display: inline-block;
    background-color: var(--first-color);
    color: #FFF;
    padding: 1rem 1.75rem;
    border-radius: 3rem;
    font-weight: var(--font-medium);
    transition: 0.3s;
}

.button:hover {
    background-color: var(--second-color);
}

.button:hover .button__icon {
    transform: translateX(0.25rem);
}

.button__icon {
    transition: 0.3s;
}

.button--flex {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
}

.button--link {
    color: var(--first-color);
    font-weight: var(--font-medium);
}

.button--link:hover .button__icon {
    transform: translateX(0.25rem);
}

.button--pill {
    color: var(--first-color);
    border: 1px solid var(--first-color);
    background: transparent;
}

.button--pill:hover {
    color: #FFF;
}

.button--white {
    color: var(--first-color);
    background-color: var(--container-color);
    border: 1px solid var(--container-color);
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    box-shadow: 0 2px 16px rgba(122, 70, 46, 0.205);
    z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}

/* Nav elements colors */
.nav__logo,
.nav__burger,
.nav__close {
    color: var(--title-color);
}

/* Nav data container */
.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Nav logo */
.nav__logo img {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    transition: 0.3s;
    width: 80px;
}

/* Nav toggle */
.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

/* Burger and Close icons */
.nav__burger,
.nav__close {
    position: absolute;
    width: -moz-max-content;
    width: max-content;
    height: -moz-max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
    opacity: 0;
}

.nav__button {
    display: flex;
    align-items: center;
}

/* Mobile menu */
@media screen and (max-width: 1118px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
        background-color: var(--body-color);
        box-shadow: -2px 0 4px hsla(var(--hue), 24%, 15%, 0.1);
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        background-color: var(--black-color);
        padding: 1rem 2rem;
    }
}
/* Nav links */
.nav__link {
    color: var(--title-color);
    background-color: var(--body-color);
    font-weight: var(--font-medium);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.nav__link a {
    color: var(--title-color);
}

.nav__link:hover,
.nav__link a:hover {
    color: var(--first-color);
}

/* Show menu */
.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}

.active-link {
    color: var(--first-color);
}

/* Show icon toggle */
.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--title-color);
    background-color: var(--body-color);
    display: flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    font-weight: var(--font-medium);
    transition: background-color 0.3s;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--first-color);
    color: #fff;
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
    box-shadow: 0 12px 32px rgba(139, 77, 45, 0.168627451);
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
    margin-left: auto;
}

.dropdown__sublink {
    background-color: var(--black-color-lighten);
}

/*=============== HOME ===============*/
.home {
    padding: 3.5rem 0 2rem;
    position: relative;
}

.home__container {
    position: relative;
    justify-items: center;
}

.home__img {
    width: 200px;
    justify-self: center;
}

.home__title {
    font-size: 5.5rem;
    line-height: 140%;
    margin-bottom: var(--mb-1);
    text-align: center;
    color: var(--second-color);
}

.home__description {
    margin-bottom: var(--mb-2-5);
    text-align: center;
}

.home__buttons {
    text-align: center;
    display: inline-flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.hero__decor-circle {
    position: absolute;
    opacity: 1;
    z-index: -2;
    overflow: hidden;
}

.hero__decor-circle--1 {
    width: 450px;
    top: 8rem;
    left: -13rem;
    transform: rotate(98deg);
}

.hero__decor-circle--2 {
    width: 450px;
    right: -11rem;
    top: -1rem;
    transform: rotate(-15deg);
}

/* Small devices (max-width: 320px) */
@media screen and (max-width: 320px) {
    .hero__title {
        font-size: var(--h1-font-size);
    }

    .hero__decor-circle--1 {
        top: 5rem;
    }

    .hero__decor-circle--2 {
        bottom: 0;
    }
}
.protect {
    padding: 3.5rem 0 2rem;
    position: relative;
}

.protect__container {
    row-gap: 2rem;
    position: relative;
}

.protect__img {
    width: 1200px;
    display: flex;
    margin: 1.5rem auto;
}

.protect__data {
    align-items: center;
}

.protect__title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--mb-1);
    text-align: center;
    color: var(--second-color);
}

.protect__title span {
    color: var(--first-color);
}

.protect__description {
    text-align: center;
    max-width: 668px;
    margin: 1.5rem auto var(--mb-2-5);
    font-size: var(--normal-font-size);
    line-height: 1.6;
}

.testimonial__section {
    padding: 4rem 0 1rem;
}

.testimonial_container {
    padding: 2rem 1rem;
    background-image: url("../images/section-overlay.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--first-color);
}

.testimonial-swiper {
    width: 100%;
    max-width: 1200px;
    cursor: grab;
}

.testimonial-swiper:active {
    cursor: grabbing;
}

.testimonial {
    padding: 3rem 1rem;
    text-align: center;
    color: #fff;
}

.testimonial h2 {
    font-size: 38px;
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    color: #fff;
}

.author {
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.trusted__partner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    max-width: 850px;
    margin: 2rem auto;
}

.trusted__partner-title {
    text-align: center;
    color: #fff;
}

.trusted__partner a img {
    max-width: 120px;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .testimonial h2 {
        width: 90%;
    }
}
@media (max-width: 768px) {
    .testimonial {
        padding: 2rem 1rem;
    }

    .testimonial h2 {
        font-size: clamp(1rem, 4vw + 0.5rem, 1.5rem);
        text-align: center;
    }

    .trusted__partner {
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .testimonial {
        padding: 1.5rem 1rem;
    }

    .trusted__partner a img {
        max-width: 80px;
    }
}
/*=============== SERVICES ===============*/
.services__container {
    row-gap: 2rem;
    align-items: center;
}

.services__img {
    justify-self: center;
    border-radius: 0.5rem;
}

.services__title {
    margin-bottom: var(--mb-1);
}

.services__description {
    margin-bottom: var(--mb-2);
}

.services__details {
    display: grid;
    row-gap: 1rem;
    margin-bottom: var(--mb-2-5);
}

.services__details-description {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    font-size: var(--small-font-size);
}

.services__details-icon {
    font-size: 1rem;
    color: var(--first-color);
    margin-top: 0.15rem;
}

.indigenous-story {
    padding: 4.5rem 0 0;
    position: relative;
}

.indigenous-story__title {
    font-size: 58px;
    line-height: 1;
    margin-bottom: var(--mb-1);
    text-align: center;
    margin-inline: auto;
}

.indigenous-story__desc {
    text-align: center;
    max-width: 850px;
    margin: 1.5rem auto var(--mb-2-5);
}

.indigenous-story__video {
    overflow: hidden;
}

/* Latest Insight Section */
.latest-insight {
    padding: 6rem 0;
}

.latest-insight .container {
    max-width: 1200px;
    margin: 0 auto;
}

.latest-insight__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.insight-intro {
    display: block;
}

.latest-insight__title {
    font-size: 2rem;
    color: var(--title-color);
    margin: 0 0 1rem 0;
}

.latest-insight__intro-text {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.latest-insight__button {
    background-color: #7A462E;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    width: -moz-fit-content;
    width: fit-content;
}

.insight-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

.insight-card__img {
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: 283px;
}

.insight-card__title {
    color: var(--title-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
}

.insight-card__text {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.impact {
    padding-bottom: 2rem;
    position: relative;
}

.impact__container {
    row-gap: 2rem;
    position: relative;
}

.impact__img {
    width: 1200px;
    display: flex;
    margin: 1.5rem auto;
}

.impact__data {
    align-items: center;
}

.impact__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: var(--second-color);
    max-width: 750px;
    margin: var(--mb-1) auto;
}

.impact__title span {
    color: var(--first-color);
}

.impact__description {
    text-align: center;
    max-width: 668px;
    margin: 1.5rem auto var(--mb-2-5);
    font-size: var(--normal-font-size);
    line-height: 1.6;
}

.footer {
    background-image: url("../images/Footer-overlay.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--first-color);
}

.footer__container {
    row-gap: 3rem;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    margin-bottom: var(--mb-1);
    transition: 0.3s;
}

.footer__logo-icon {
    font-size: 1.15rem;
    color: var(--first-color);
}

.footer__title {
    color: #fff;
    font-size: var(--smaller-font-size);
    margin-bottom: var(--mb-1-5);
}

.footer__title-small {
    color: #fff;
    font-size: 12px;
    margin-bottom: var(--mb-1-5);
}

.footer__title-small a {
    color: #fff;
    text-decoration: underline;
}

.footer__title-qoute {
    color: #fff;
    font-size: 12px;
    margin-bottom: var(--mb-1-5);
}

.footer__subscribe {
    background-color: #fff;
    padding: 0.55rem;
    display: flex;
    justify-content: space-between;
    border-radius: 0.5rem;
    margin-bottom: var(--mb-1);
}

.footer__input {
    width: 70%;
    padding: 0 0.5rem;
    background: none;
    color: #7A462E;
    border: none;
    outline: none;
}

.footer__button {
    padding: 1rem;
    color: #fff;
}

.footer__data {
    display: grid;
    row-gap: 0.75rem;
    color: #fff;
}

.footer__information {
    font-size: var(--small-font-size);
}

.footer__information a {
    color: #fff;
}

.footer__information a:hover {
    text-decoration: underline;
}

.footer__social {
    display: inline-flex;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
}

.footer__social-link {
    font-size: 1rem;
    color: #fff;
    transition: 0.3s;
}

.footer__social-link:hover {
    transform: translateY(-0.25rem);
}

.footer__cards {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
}

.footer__copy {
    text-align: center;
    font-size: var(--smaller-font-size);
    color: #fff;
    margin: 5rem 0 1rem;
}

/*=============== SCROLL UP ===============*/
.scrollup {
    position: fixed;
    background-color: var(--first-color);
    right: 1rem;
    bottom: -30%;
    display: inline-flex;
    padding: 0.5rem;
    border-radius: 0.25rem;
    z-index: var(--z-tooltip);
    opacity: 0.8;
    transition: 0.4s;
}

.scrollup:hover {
    background-color: var(--first-color);
    color: #fff;
    opacity: 1;
}

.scrollup:hover .scrollup__icon {
    color: #fff;
}

.scrollup__icon {
    font-size: 1rem;
    color: #fff;
}

/* Show Scroll Up */
.show-scroll {
    bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: 0.6rem;
    background: hsl(var(--hue), 4%, 53%);
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--hue), 4%, 29%);
    border-radius: 0.5rem;
}

/* ================= CONTACT WRAPPER ================= */
.contact {
    position: relative;
    background-image: url("../images/Contact-us-background.png");
    background-size: cover;
    background-position: center;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(92, 58, 33, 0.75);
    z-index: 0;
}

.contact > * {
    position: relative;
    z-index: 1;
}

/* ================= GRID LAYOUT ================= */
.contact-section {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

/* ================= LEFT PANEL ================= */
.contact-data {
    background-color: #7A462E;
    background-image: url("../images/contact-us-overlay.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem;
    justify-content: center;
}

.contact-left {
    max-width: 520px;
    color: #fff;
}

.contact-left h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-left p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.partners {
    display: grid;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-template-columns: repeat(4, 1fr);
}

.partners img {
    height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
}

/* ================= RIGHT PANEL ================= */
.contact-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

.contact-right {
    background: #F6F1E8;
    border-radius: 20px;
    padding: 4rem 2.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Heading */
.contact-right h2 {
    font-size: 2.25rem;
    text-align: center;
    color: #5c3a21;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Toggle */
.form-toggle {
    display: grid;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-items: center;
}

.form-toggle button {
    padding: 1rem 2rem;
    border-radius: 999px;
    border: 1px solid #8B4D2D;
    background-color: #8B4D2D;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
}

.form-toggle button:hover {
    background-color: var(--second-color);
}

.form-toggle button.inactive {
    background: transparent;
    color: #8B4D2D;
}

.form-toggle button.inactive:hover {
    border: 1px solid var(--second-color);
    color: var(--second-color);
}

/* Form */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#contactForm form div {
    display: grid;
}

#contactForm label {
    font-size: 1rem;
    color: #7A462E;
    margin-bottom: 0.25rem;
}

#contactForm input[type=text],
#contactForm input[type=email],
#contactForm input[type=password],
#contactForm input[type=tel] {
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #E3C6B8;
    font-size: 0.9rem;
    color: #443732;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    border: 1px solid #E3C6B8;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
#contactForm input:hover,
#contactForm select:hover,
#contactForm textarea:hover {
    border-color: var(--first-color);
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: var(--first-color);
    box-shadow: none;
}

.submit-btn {
    margin: 1rem auto;
    align-self: center;
    padding: 1rem 4rem;
    border-radius: 999px;
    border: none;
    background-color: #8B4D2D;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    color: #7A462E;
    margin-bottom: 0.25rem;
}

.form-group select {
    padding: 0.7rem 2.5rem 0.7rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #E3C6B8;
    font-size: 1rem;
    background-color: #fff;
    color: #5c3a21;
    cursor: pointer;
    /* remove default styles */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238B4D2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px;
}

.form-group select:focus {
    outline: none;
    border-color: #8B4D2D;
}

.form-group select:required:invalid {
    color: #9b8a7f;
}

@media (min-width: 992px) {
    .contact-section {
        grid-template-columns: 1fr 1fr;
        padding-top: 5rem;
    }

    .contact-form {
        padding-left: 4rem;
    }

    .form-toggle {
        grid-template-columns: 1fr 1fr;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .contact-data {
        padding: 3rem 2rem;
    }

    .contact-right {
        max-width: 100%;
        border-radius: 14px;
    }
}
/* =========================
   WRAPPER
========================= */
.signup-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.signup-logo img {
    width: 250px;
    height: auto;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
}

/* hide all forms by default */
.signup-form {
    width: 100%;
    max-width: 520px;
}

/* only active form shows */
.signup-form.active {
    display: flex;
    flex-direction: column;
}

/* =========================
   STEP CONTAINER
========================= */
.signup-form-container {
    background: #F6F1E8;
    border-radius: 20px;
    padding: 4rem 2.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.signup-step {
    display: none;
}

/* active step */
.signup-step.active {
    display: grid;
}

/* step heading */
.signup-step h2 {
    font-size: 2.25rem;
    text-align: center;
    color: #5c3a21;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* =========================
   INPUTS
========================= */
.form-group {
    margin-bottom: 1rem;
}

.form-group-flex {
    display: flex;
    gap: 1rem;
}

.signup-form input[type=text],
.signup-form input[type=email],
.signup-form input[type=password],
.signup-form input[type=tel],
.signup-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    border: 1px solid #E3C6B8;
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fileinput-button {
    font-size: 14px;
    color: transparent;
}

.fileinput-button::file-selector-button {
    border: none;
    background: var(--first-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.fileinput-button::file-selector-button:hover {
    background: var(--second-color);
}

.fileinput-button:focus {
    outline: none;
}

/* hover + focus */
.signup-form input:hover,
.signup-form select:hover {
    border-color: var(--first-color);
}

.signup-form input:focus,
.signup-form select:focus {
    border-color: var(--first-color);
    box-shadow: none;
}

.form-note {
    margin: 0.5rem 0;
    color: rgba(33, 37, 41, 0.7490196078);
    font-size: 0.85rem;
}

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

.form-checkbox label {
    margin: 0;
}

.form-checkbox label a {
    color: var(--second-color);
    text-decoration: underline;
    font-weight: 500;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}

.radio-option input {
    display: none;
}

.form-title {
    margin-bottom: 1rem;
}

.form-desc {
    font-size: 14px;
    color: rgba(33, 37, 41, 0.7490196078);
}

.radio-ui {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

/* inner dot */
.radio-ui::after {
    content: "";
    width: 10px; /* inner dot size */
    height: 10px;
    background: var(--first-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.15s ease;
}

/* checked state */
.radio-option input:checked + .radio-ui {
    border-color: var(--first-color);
}

.radio-option input:checked + .radio-ui::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-text {
    font-size: 14px;
}

/* hover */
.radio-option:hover {
    border-color: var(--first-color);
    background: #f5f9ff;
}

/* =========================
   SEGMENTED ROLE TOGGLE
========================= */
.role-inputs {
    font-family: "Lato", sans-serif;
    position: relative;
    display: flex;
    border-radius: 0.75rem;
    background-color: #ffffff;
    box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
    padding: 0.25rem;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 2rem;
    font-size: 14px;
    border: 1px solid var(--first-color);
}

.role-inputs .role-item {
    flex: 1;
    text-align: center;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    padding: 0.6rem 0;
    color: var(--first-color);
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    text-decoration: none;
}

/* hover */
.role-inputs .role-item:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* active state */
.role-inputs .role-item.active {
    background-color: var(--first-color);
    font-weight: 600;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transform: scale(1.02);
}

/* =========================
   STEP BUTTONS
========================= */
.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.next-btn,
.back-btn,
button[type=submit] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: var(--first-color);
    color: #fff;
}

.back-btn {
    background: rgba(122, 70, 46, 0.3490196078);
    color: #fff;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #7a462e;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .form-group-flex {
        flex-direction: column;
    }

    .signup-step {
        padding: 2rem 1.5rem;
    }
}
@media (min-width: 992px) {
    .form-wrapper {
        padding-left: 4rem;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .contact-data {
        padding: 3rem 2rem;
    }

    .signup-form-container {
        max-width: 100%;
        border-radius: 14px;
    }
}
.aboutUs {
    padding: 3rem 0 5rem;
    color: #fff;
}

.aboutus__container {
    position: relative;
    background-image: url("../images/protecting-country.png");
    background-size: cover;
    background-position: center;
    padding: 120px 20px 180px;
    text-align: center;
    color: #fff;
}

.aboutus__container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(125, 78, 54, 0.68), rgba(122, 70, 46, 0.68));
}

.aboutus__content {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 2rem 0;
    z-index: 2;
}

.aboutus__content h1 {
    font-size: var(--h1-font-size);
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.aboutus__content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: auto;
}

.aboutus__image {
    position: relative;
    margin-top: -120px;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px 60px;
    flex-wrap: wrap;
}

.image-card {
    width: 367px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.image-card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.aboutus__text {
    padding: 4rem 1rem 1rem;
}

.aboutus__text-container {
    gap: 2rem;
}

@media (max-width: 1024px) {
    .image-card {
        width: 300px;
    }
}
@media (max-width: 768px) {
    .about-section {
        padding: 100px 20px 150px;
    }

    .image-card {
        width: 100%;
        max-width: 400px;
    }
}
.vision {
    padding: 4rem 1rem;
}

.vision__container {
    align-items: center;
    gap: 2rem;
}

.vision__title,
.vision__description {
    margin-bottom: var(--mb-1);
}

.vision__img {
    border-radius: 0.5rem;
}

.carbon__section-icon {
    text-align: center;
}

.carbon__data {
    max-width: 630px;
    margin: 0 auto;
}

.carbon__title {
    font-size: var(--h2-font-size);
    text-align: center;
    color: var(--title-color);
}

.carbon__description {
    color: var(--text-color);
    font-size: var(--normal-font-size);
}

.carbon__grid {
    padding: 2rem 0;
}

.carbon__grid-container {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.carbon__grid-cards {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.carbon__grid-cards img {
    max-width: 94px;
    width: 100%;
}

.carbon__grid-cards-data {
    display: grid;
}

.carbon__grid-cards h4 {
    font-size: var(--h2-font-size);
    text-align: center;
    margin-bottom: var(--mb-1-5);
    color: var(--title-color);
}

.carbon__grid-cards p {
    font-size: var(--normal-font-size);
    text-align: center;
    color: var(--text-color);
}

.cards__bg .carbon__grid-cards {
    background-color: rgba(122, 70, 46, 0.1);
    padding: 3rem 1rem;
    border-radius: 0.75rem;
    border: solid 1px #CFBDAF;
}

/*=============== governance ===============*/
.governance__container {
    gap: 2rem;
    align-items: center;
}

.governance__img img {
    border-radius: 0.5rem;
}

.governance__description {
    font-size: var(--normal-font-size);
    margin-bottom: 2rem;
    color: var(--body-font);
}

.governance__accordion {
    display: grid;
    row-gap: 1.5rem;
}

.governance__accordion-item {
    background-color: rgba(122, 70, 46, 0.1);
    border: solid 1px #CFBDAF;
    border-radius: 0.5rem;
    padding: 1rem 0.75rem;
}

.governance__accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.governance__accordion-icon {
    margin-right: 0.75rem;
    transition: 0.3s;
}

.governance__accordion-header svg {
    color: var(--first-color);
}

.governance__accordion-header h3 {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: var(--second-color);
}

.governance__accordion-arrow {
    display: inline-flex;
    background-color: rgba(122, 70, 46, 0.2470588235);
    padding: 0.25rem;
    color: var(--first-color);
    border-radius: 2px;
    margin-left: auto;
    transition: 0.3s;
}

.governance__accordion-description {
    font-size: var(--normal-font-size);
    padding: 1.25rem 2.5rem 0 0;
}

.governance__accordion-content {
    overflow: hidden;
    height: 0;
    transition: all 0.25s ease;
}

.governance__accordion-arrow svg {
    transition: 0.4s;
}

/*Rotate icon and add shadows*/
.accordion-open {
    box-shadow: 0 12px 32px rgba(139, 77, 45, 0.168627451);
}

.accordion-open .governance__accordion-arrow {
    box-shadow: 0 2px 4px hsla(228, 66%, 45%, 0.1);
}

.accordion-open .governance__accordion-arrow svg {
    transform: rotate(-180deg);
}

.newsletter__banner {
    padding: 6rem 0;
}

.newsletter__banner-wrapper {
    padding: 2rem 1rem;
    background-color: var(--first-color);
    border-radius: 1.6rem;
}

.newsletter__banner-container {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 2rem;
}

.newsletter__banner-data {
    max-width: 556px;
    color: var(--container-color);
}

.newsletter__banner-data h2 {
    color: var(--container-color);
}

.newsletter__banner-data p {
    font-size: var(--normal-font-size);
    margin-bottom: var(--mb-2);
}

.newsletter__banner-data a:hover {
    background-color: #f5f5f5;
}

.projects__buttons a:first-child {
    color: var(--first-color);
    background-color: var(--container-color);
    margin: 1rem;
}

.projects__buttons a:nth-child(2) {
    color: var(--container-color);
    border: 1px solid var(--container-color);
    margin: 1rem;
}

.projects__graph {
    padding: 3rem 1rem 2rem;
}

.projects__dropdown-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--mb-2);
}

.projects-dropdown-label {
    display: block;
    color: var(--title-color);
    font-size: var(--h3-font-size);
}

.projects__dropdown {
    position: relative;
    border: 1px solid var(--first-color);
    border-radius: 6px;
    background-color: var(--container-color);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24"><path d="m6.293 13.293 1.414 1.414L12 10.414l4.293 4.293 1.414-1.414L12 7.586z" fill="%23663823"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1em center;
    background-size: 1em 1em;
    padding-right: 2em;
    max-width: 260px;
    width: 100%;
}

.projects__dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    color: var(--second-color);
}

.projects__dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid var(--first-color);
    border-radius: 6px;
    background: white;
    box-shadow: 0 3px 10px rgba(122, 70, 46, 0.0745098039);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 4px;
}

.projects__dropdown-item {
    padding: 0.5em 1em;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--first-color);
}

.projects__dropdown-item:hover {
    background-color: rgba(102, 56, 35, 0.1764705882);
}

.chart-card {
    max-width: 1200px;
    margin: auto;
}

.chart-header {
    margin-bottom: 20px;
}

.chart-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.chart-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

.chart-footer {
    text-align: right;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

canvas {
    margin-top: 10px;
}

.projects__card-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 3rem 0;
}

.projects__card-container .projects__active {
    background-color: var(--first-color);
}

.projects__card-container .projects__active h5,
.projects__card-container .projects__active p {
    color: #fff;
}

.projects__card {
    background-color: rgba(122, 70, 46, 0.1);
    padding: 3rem 1rem;
    border-radius: 15px;
    text-align: center;
}

.projects__card-title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-2);
}

.projects__card-desc {
    font-size: var(--normal-font-size);
}

.projects__graph-group {
    display: none;
    animation: fadeProjects 0.4s ease;
}

.projects__graph-group.active {
    display: block;
}

@keyframes fadeProjects {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.steps {
    padding: 6rem 1rem 1rem;
}

.steps__data {
    margin-bottom: var(--mb-2);
    text-align: center;
}

.steps__card-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0;
}

.steps__title {
    margin-bottom: var(--mb-1);
}

.steps__cards {
    display: grid;
    gap: 1.5rem;
    background-color: rgba(122, 70, 46, 0.1);
    padding: 3rem 2rem;
    border-radius: 0.75rem;
}

.steps__cards img {
    padding: 0.75rem;
    background-color: rgba(122, 70, 46, 0.15);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.steps__card-data h3 {
    color: var(--title-color);
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
}

.steps__card-data p {
    font-size: var(--normal-font-size);
}

.steps__cards:hover img {
    transform: translateY(-10px);
}

.steps__flow-data {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: var(--mb-2);
}

.steps__flow-cards {
    gap: 2rem;
}

.steps__flow-card {
    background-color: rgba(122, 70, 46, 0.1);
    padding: 2rem 1rem;
    border-radius: 0.75rem;
}

.steps__flow-icon {
    padding: 1rem;
    background-color: var(--first-color);
    width: 60px;
    border-radius: 0.55rem;
    text-align: center;
    margin-bottom: var(--mb-1-5);
}

.steps__flow-icon h5 {
    font-size: 25px;
    color: white;
    font-weight: normal;
}

.steps__flow-card h4 {
    color: var(--title-color);
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
}

.verified__impact-container {
    align-items: center;
    gap: 2rem;
}

.verified__impact-data h2 {
    margin-bottom: var(--mb-1);
}

.verified__impact-data {
    margin-bottom: var(--mb-2);
}

.verified__impact-card {
    display: grid;
    justify-items: center;
    gap: 1rem;
    max-width: 300px;
    padding: 1rem;
    width: 100%;
}

.verified__impact-card img {
    padding: 0.75rem;
    background-color: rgba(122, 70, 46, 0.18);
    border-radius: 0.75rem;
    width: 60px;
    height: 60px;
}

.verified__impact-cards {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
}

.verified__impact-card-data {
    text-align: center;
}

.verified__impact-card-data h4 {
    font-size: var(--normal-font-size);
    margin-bottom: var(--mb-0-5);
}

.verified__impact-card-data p {
    font-size: 13px;
    max-width: 200px;
    margin: 0 auto;
}

.verified__impact-img img {
    border-radius: 0.5rem;
}

.blog__article-cards {
    gap: 2rem;
}

.blog__article-container {
    gap: 3rem;
}

.blog__article-data {
    text-align: center;
}

.blog__article-data p {
    max-width: 634px;
    width: 100%;
    margin: 0 auto;
}

.blog__article-card {
    background-color: var(--container-color);
    padding-bottom: 1.25rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.blog__article-card h4 {
    font-size: 20px;
    margin-bottom: var(--mb-1);
}

.blog__article-card-data {
    padding: 1.25rem;
    font-size: var(--normal-font-size);
}

.blog__article-card a {
    padding: 0 1.25rem;
    font-size: 20px;
}

.banner__container {
    position: relative;
    background-image: url("../images/protecting-country.png");
    background-size: cover;
    background-position: center;
    padding: 140px 20px 140px;
    text-align: center;
    color: #fff;
}

.banner__container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(125, 78, 54, 0.68), rgba(122, 70, 46, 0.68));
}

.banner__content {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 2rem 0;
    z-index: 2;
}

.banner__content h1 {
    font-size: var(--big-font-size);
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.banner__content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: auto;
}

.banner__buttons {
    z-index: 2;
    position: relative;
}

.banner__buttons a:first-child {
    color: var(--first-color);
    background-color: var(--container-color);
    margin: 1rem;
}

.banner__buttons a:nth-child(2) {
    color: var(--container-color);
    border: 1px solid var(--container-color);
    margin: 1rem;
}

.benefit__section .banner__content h1 {
    margin: 0 auto 20px;
}

.benefit__section .banner__content p {
    margin: 0 auto;
}

.traditional {
    text-align: center;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1rem;
}

.traditional__header {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.traditional__header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.traditional__header p {
    color: #555;
    line-height: 1.6;
}

.tfm-slider {
    padding: 2rem 0;
}

.slider__card {
    display: grid;
    align-items: center;
    background: #7b4a2e;
    color: #fff;
    padding: 2.5rem 3rem;
    border-radius: 0.75rem;
    text-align: left;
    max-width: 600px;
    width: 100%;
    height: auto;
}

.slider__card h3 {
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
    color: var(--container-color);
}

.slider__card p {
    line-height: 1.6;
}

.outcome__data {
    text-align: center;
    margin-bottom: var(--mb-2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.outcome__container-cards {
    gap: 2rem;
}

.outcome__card {
    border: solid 1px rgba(122, 70, 46, 0.2039215686);
    background-color: rgba(122, 70, 46, 0.1);
    padding: 2rem 1rem;
    border-radius: 0.75rem;
}

.outcome__card-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--mb-1);
}

.trusted__network {
    padding: 3rem 1rem;
    background-image: url("../images/section-overlay.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--first-color);
    margin-top: 2rem;
}

.trusted__network-data {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.trusted__network-data h2 {
    color: #fff;
}

/* =========================
   PRODUCT LAYOUT
========================= */
.product {
    padding: 1rem 0 4rem;
    /*padding: 10rem 0 4rem;*/
}

.product__container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* =========================
   LEFT - IMAGES
========================= */
.product__image-container {
    gap: 1.5rem;
}

.product__image,
.product__image-small {
    border: 1px solid #B77B62;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.product__image img,
.product__image-small img {
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.product__images {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.product__image-small {
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.product__image-small:hover {
    transform: translateY(-4px);
}

/* =========================
   BREADCRUMBS
========================= */
.product__breadcrumbs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 14px;
    color: #5E5E5E;
    flex-wrap: wrap;
}

/* =========================
   TAGS + META
========================= */
.product__tags-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

.product__content-tags {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product__tags {
    padding: 6px 12px;
    border-radius: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__tags span {
    font-size: 15px;
}

.product__content-tags .product__tags:nth-child(2) {
    background: #1A8754;
    color: #fff;
}

/* =========================
   TIME
========================= */
.product__time-limit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #6B6B6B;
}

/* =========================
   PRODUCT DATA
========================= */
.product__data {
    margin-top: 2rem;
}

.product__data h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product__data p {
    line-height: 1.8;
    color: #5B5B5B;
}

.product__data-price {
    font-size: 2.5rem;
    color: #FF0000;
    font-family: var(--heading-font);
    padding: 1.5rem 0;
}

/* =========================
   SELLER
========================= */
.product__seller-info {
    margin-bottom: 2rem;
}

.product__seller-info h4 {
    font-size: 15px;
    margin-bottom: 0.5rem;
    color: #777;
    font-weight: 500;
}

.product__seller-info p {
    font-size: 16px;
    color: #2B2B2B;
}

/* =========================
   BID SECTION
========================= */
.product__bid {
    margin-top: 2rem;
}

.product__bid-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product__bid-header h4 {
    font-size: 16px;
    color: var(--text-color);
}

/* tooltip */
.product__tooltip {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.product__tooltip img {
    width: 18px;
    height: 18px;
}

.product__tooltip-text {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    padding: 0.75rem 1rem;
    background: #2B2B2B;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 10;
}

.product__tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #2B2B2B;
}

.product__tooltip:hover .product__tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* bid form */
.product__bid-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product__bid-form input {
    width: 100%;
    height: 58px;
    border: 1px solid #B77B62;
    border-radius: 6px;
    padding: 0 1rem;
    font-size: 16px;
    outline: none;
    background: #fff;
}

.product__wishlist {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.product__wishlist:hover {
    transform: scale(1.05);
}

.product__minimum-bid {
    /*margin-top: 0.75rem;*/
    font-size: 14px;
    color: #6B6B6B;
}

.product__bid-button {
    width: 100%;
    height: 60px;
    margin-top: 1.5rem;
    border-radius: 60px;
    border: none;
    background: #8B4C2E;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.product__bid-button:hover {
    opacity: 0.9;
}

/* =========================
   FOOTER
========================= */
.product__footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.product__contract a {
    font-size: 14px;
    color: #8B4C2E;
    text-decoration: underline;
}

.product__share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product__share span {
    font-size: 14px;
    color: #5B5B5B;
}

.product__socials {
    display: flex;
    gap: 0.75rem;
}

.product__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.product__socials a:hover {
    transform: translateY(-3px);
}

.product__info {
    padding: 3rem 0 5rem;
}

/* =========================
   TABS
========================= */
.product__info-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    font-size: 16px;
}

.product__info-tabs span {
    color: #777;
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    transition: 0.3s;
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
}

.product__info-tabs span:hover {
    color: #8B4C2E;
}

.product__info-tabs .active {
    color: #8B4C2E;
}

.product__info-tabs .active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8B4C2E;
    border-radius: 2px;
}

/* =========================
   TAB PANELS
========================= */
.tab-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: 0.35s ease;
    pointer-events: none;
}

.tab-panel.active {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* =========================
   DESCRIPTION
========================= */
.product__description {
    padding: 2rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.7;
}

.product__description p {
    margin-bottom: 15px;
}

.product__description ul {
    padding-left: 18px;
    margin-top: 15px;
}

.product__description ul li {
    margin-bottom: 8px;
    list-style: disc;
}

/* =========================
   SPECIFICATIONS
========================= */
.product__spec {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.product__spec-header {
    background: #7b4a30;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
}

.product__spec-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
}

.product__spec-item h4 {
    font-size: 1.2rem;
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 6px;
}

.product__spec-item p {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.5;
}

/* =========================
   REVIEWS
========================= */
.product__reviews {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-item {
    padding: 16px 18px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    transition: 0.3s;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.review-header strong {
    color: var(--first-color);
    font-size: var(--h3-font-size);
}

.review-header span {
    color: var(--first-color);
    font-size: var(--normal-font-size);
    font-weight: 600;
}

.review-item p {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 968px) {
    .product {
        padding: 8rem 0 4rem;
    }

    .product__container {
        grid-template-columns: 1fr;
    }

    .product__data h2,
    .product__data-price {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .product__spec-body {
        grid-template-columns: 1fr;
    }

    .product__info-tabs {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media (max-width: 576px) {
    .product__images {
        grid-template-columns: repeat(2, 1fr);
    }

    .product__bid-form {
        flex-direction: column;
    }

    .product__wishlist {
        width: 100%;
        border-radius: 10px;
    }

    .product__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
.related__product {
    padding: 4rem 0;
}

.related__product h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #6f3d22;
    margin-bottom: 2.5rem;
}

.related__product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.related__product-item {
    position: relative;
    background-color: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.related__product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #55b31b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
}

.related__product-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #999;
    cursor: pointer;
}

.related__product-image {
    width: 100%;
    max-width: 180px;
    display: block;
    margin: 2rem auto 1rem;
}

.related__product-seller {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.35rem;
}

.related__product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6f3d22;
    margin-bottom: 1rem;
}

.related__product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.related__product-price {
    color: #55b31b;
    font-weight: 700;
}

.related__product-bid {
    font-size: 0.9rem;
    color: #555;
}

.related__product-button {
    width: 100%;
    border: none;
    background-color: #7a472b;
    color: #fff;
    padding: 0.85rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.related__product-button:hover {
    background-color: #5f341e;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .related__product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 576px) {
    .related__product-container {
        grid-template-columns: 1fr;
    }
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 575px) {
    .container,
    .container-xl {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .nav__link {
        padding-inline: 1rem;
    }

    .home__img {
        width: 180px;
    }

    .home__title {
        font-size: 38px;
    }

    .home__buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .protect__title,
    .impact__title,
    .indigenous-story__title {
        font-size: 32px;
    }

    .projects__container {
        padding: 80px 16px;
    }
}
/* For medium devices */
@media screen and (min-width: 576px) {
    .latest-insight__cards,
    .carbon__grid-container,
    .projects__card-container,
    .blog__article-cards,
    .steps__card-container,
    .verified__impact-cards,
    .steps__flow-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__subscribe {
        width: 500px;
    }
}
@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }

    .services__container,
    .aboutus__text-container,
    .vision__container,
    .governance__container,
    .newsletter__banner-container,
    .verified__impact-container,
    .outcome__container-cards,
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .carbon__grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .verified__impact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects__card-container,
    .steps__card-container,
    .blog__article-cards,
    .steps__flow-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .trusted__network {
        padding: 5rem 1rem;
    }

    .home {
        padding: 10rem 0 5rem;
    }

    .home__container {
        align-items: center;
    }

    .home__img {
        width: 280px;
        order: 1;
    }

    .footer__container {
        -moz-column-gap: 3rem;
        column-gap: 3rem;
    }

    .footer__subscribe {
        width: initial;
    }
}
/* For large devices */
@media screen and (min-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: flex;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
    }

    .nav__link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        -moz-column-gap: 0.25rem;
        column-gap: 0.25rem;
    }

    .nav__link:hover {
        background-color: transparent;
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative;
    }

    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: 0;
        top: 6rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s, top 0.3s;
    }

    .dropdown__link,
    .dropdown__sublink {
        padding-inline: 1rem 3.5rem;
    }

    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem;
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: 0.5rem;
    }

    /* Show dropdown menu */
    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        transition: top 0.3s;
    }

    /* Show dropdown submenu */
    .dropdown__subitem:hover > .dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top 0.3s;
    }

    .section {
        padding: 6rem 1rem 1rem;
    }

    .section__title,
    .section__title-center {
        font-size: var(--h1-font-size);
    }

    .home {
        padding: 13rem 0 5rem;
    }

    .home__img {
        width: 350px;
    }

    .home__description {
        padding-right: 7rem;
    }

    .contact-form,
    .form-wrapper {
        justify-content: flex-start;
    }

    .contact-data {
        justify-content: flex-end;
    }

    .footer__logo {
        font-size: var(--h3-font-size);
    }

    .footer__container {
        grid-template-columns: 1fr 0.5fr 0.5fr 1.5fr;
    }

    .footer__copy {
        margin: 7rem 0 2rem;
    }
}
@media screen and (min-width: 1200px) {
    .services__container {
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }

    .scrollup {
        right: 3rem;
    }

    .latest-insight__cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*# sourceMappingURL=styles.css.map */
