/* ===============================
   GOOGLE FONTS
================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:wght@100..900&display=swap');

/* ===============================
   ROOT VARIABLES
================================= */
:root {
    /* COLORS */
    --primary-green: #1E8449;
    --secondary-green: #18804D;
    --text-dark: #000000;
    --text-light: #ffffff;
    --text-body: #272727;
    --bg-light: #FBFCFE;
    --text-muted: #6E7975;

    /* GRADIENTS */
    --gradient-primary: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
;

    /* FONTS */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* SIZES */
    --btn-height: 65px;
    --btn-radius: 8px;
    --container-gap: 40px;

    /* SHADOW */
    --card-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ===============================
   HERO SECTION 
================================= */
.hero-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--container-gap);
}

/* ===============================
   LEFT SIDE
================================= */
.hero-left {
    width: 44%;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 70px;
    line-height: 76px;
    color: var(--text-dark);
}

.hero-left h1 span {
    color: var(--primary-green);
}

.hero-left p {
    margin: 20px 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 32px;
    color: var(--text-body);
}

/* ===============================
   BUTTONS
================================= */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 450px;
}

.hero-buttons a {
    flex: 0 0 calc(50% - 10px);
    max-width: 200px;
    height: var(--btn-height);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--btn-radius);
    text-decoration: none;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: var(--gradient-primary);
    background-size: 100% 100%;
    background-position: left center;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    border-radius: var(--btn-radius);
    transition: background-position 0.4s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary-green);
    color: var(--secondary-green);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-btn.btn-outline:hover {
    transform: translateY(-2px);
    color: var(--secondary-green);
}

/* ===============================
   RIGHT SIDE
================================= */
.hero-right {
    position: relative;
    width: 56%;
}

.circle-wrapper {
    border-radius: 50%;
    background: radial-gradient(circle, #e6f0ea 30%, transparent 70%);
    position: relative;
}

/* CENTER LOGO */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-logo img {
    width: 120px;
}

/* NODES */
.node {
    position: absolute;
    width: 120px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.node img {
    width: 40px;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1200px){
.hero-right, .hero-left {
    width: 50%;
}
}
@media (max-width: 992px) {
    .hero-right, .hero-left {
    width: 100%;
}
    .hero-buttons {
    margin: 0 auto;
}
.hero-buttons > * {
    flex: 0 0 calc(50% - 10px); /* 2 columns */
}
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons a {
        max-width: 100%;
    }
}
@media (max-width:768px){
    .hero-left h1 {
    font-weight: 600;
    font-size: 50px;
}
}
@media (max-width: 600px) {
.hero-buttons a {
    height: 45px;
}
.hero-left,.hero-right{
    width: 100%;
}
.hero-left h1 {
    font-size: 40px;
    line-height: 50px;
}
}

/* ===============================
   BOTTLENECK SECTION
================================= */
.bottlenecks-section {
    padding: 80px 0;
    background: #f3f4f6;
}

/* HEADER */
.bottlenecks-header {
    text-align: center;
    margin-bottom: 50px;
}

.bottlenecks-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.bottlenecks-header p {
    font-family: var(--font-body);
    font-size: 18px;
    color: #272727;
}

/* GRID */
.bottlenecks-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 19px;
}

/* CARD */
.bottleneck-card {
    background: #ffffff;
    padding: 25px 20px 20px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    /* min-height: 340px; */
}

/* ICON BOX */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.icon-box img {
    width: 22px;
    height: 22px;
}

/* TEXT */
.bottleneck-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--text-dark);
    padding-right: 3rem;
    min-height: 77px;
}

.bottleneck-card p {
    font-family: var(--font-body);
    font-size: 18px;
    color: #272727;
    line-height: 25px;
    font-weight: 400;
}
@media (max-width:1440px){
    .bottlenecks-grid {
    grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 1200px) {
    .bottlenecks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bottlenecks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bottlenecks-header h2 {
    font-size: 38px;
}
}
@media (max-width:600px){
    .bottlenecks-header h2{
        font-size: 30px;
    }
    .bottleneck-card h3 {
    padding-right: 0rem;
}
}
@media (max-width: 480px) {
    .bottlenecks-grid {
        grid-template-columns: 1fr;
    }
}

.bottleneck-card:hover {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(120deg, #8BC34A, #006D5B) border-box;
    border: 1px solid transparent;
}

/* How It Works Section */


/* ===============================
   WRAPPER
================================= */
.workflow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* ===============================
   LOOP CONTAINER
================================= */
.workflow-section{
    background: #ffffff;
    padding: 55px 0;
}

.workflow-section h2{
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.workflow-section p{
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-body);
}
/* =======================================
Responsive view
======================================= */
@media (max-width:768px)
{
    .workflow-section h2 {
    font-size: 38px;
}
}
@media (max-width:600px)
{
    .workflow-section h2 {
    font-size: 30px;
}
}

/* ===============================
   FEATURES SECTION
================================= */
.features-section {
    padding: 80px 0;
    background: #f3f4f6;
}

/* HEADER */
.features-header {
    margin-bottom: 40px;
}

.features-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
}

.features-header p {
    margin-top: 8px;
    color: #272727;
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

/* CARD */
.feature-card {
    background: linear-gradient(144.19deg, rgba(255, 234, 0, 0.24) 4.72%, rgba(30, 132, 73, 0.24) 96.72%);
    padding: 36px 18px 36px 18px;
    border-radius: 16px;
    transition: all 0.3s ease;
    min-height: 160px;
}

/* ICON */
.feature-icon {
    font-size: 20px;
    margin-bottom: 12px;
}

/* TEXT */
.feature-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 23.78px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.feature-card p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 0!important;
    letter-spacing: 0px;
    color: var(--text-body);
}
.listing-content .btn-primary {
    background: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
}
/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
@media (max-width:1440px){
    .features-grid {
    grid-template-columns: repeat(5, 1fr);
}
}
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-header h2 {
    font-size: 38px;
}
}
@media(max-width: 600px){
   .features-header h2 {
    font-size: 30px;
}
.feature-card h3 {
    margin-bottom: 1rem;
}
}
@media (max-width: 375px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card:hover {
    background: linear-gradient(146.84deg, #FFEA00 -134.5%, #006D5B 124.73%);
    color: var(--text-light);
}

.feature-card:hover h3{
    color: var(--text-light);
}

.feature-card:hover p{
    color: var(--text-light);
}

.feature-card:hover svg path{
    fill: #fff;
}

/* Featured Listing */
section.featured-section {
    position: relative;
    padding: 5rem 0;
    background: #FBFCFE;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.listing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.listing-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE */
.featured-section .badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
    color: #2B2B2B;
}

/* CONTENT */
.listing-content {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.listing-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 12px;
    color: #181C1B;
    letter-spacing: 0;
    min-height: 60px;
}

.listing-meta p, .listing-meta p span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--text-muted);
}

.listing-meta p {
    display: flex;
    justify-content: space-between;
}

/* META */
.listing-meta {
    margin-bottom: 12px;
}

/* BUTTON */
.btn-primary {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(120deg, #8BC34A, #006D5B);
    color: #fff;
}

/* ANIMATION */
.fade-out {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

/* DROPDOWN */
.featured-filter {
    position: relative;
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    z-index: 20;
    cursor: pointer;
    min-width: 245px;
    text-align: center;
}

.filter-dropdown div{
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: var(--secondary-green);
    padding: 15px 0;
}

.filter-btn{
    z-index: 10;
}

.featured-header h2{
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    color: var(--text-dark);
}

.featured-title #filterToggle {
    border: 1px solid var(--secondary-green);
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    border-radius: 8px;
    color: var(--secondary-green);
    min-width: 240px;
    pointer-events: none;
}

.featured-title {
    margin-bottom: 50px;
}

.featured-footer {
    position: relative;
    text-align: center;
    margin: 50px 0;
}
.featured-footer a{
    display: inline-block;
    padding: 15px 40px;
}
/* =================================
   COMING SOON FEATURED LISTING
================================= */

.coming-soon-section {
    position: relative;
}

/* TOP BADGE */
.featured-heading-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.coming-soon-badge {
    background: #e5e7eb;
    color: #555;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    letter-spacing: 1px;
}

/* DIM WHOLE GRID */
.coming-soon-section .featured-grid {
    opacity: 0.75;
}

/* CARD EFFECT */
.coming-soon-section .listing-card {
    filter: grayscale(10%);
}

/* DISABLE INTERACTION */
.disabled-btn {
    pointer-events: none;
    cursor: not-allowed;
    background: #e5e7eb !important;
    color: #555 !important;
    border: none;
}

.disabled-btn i {
    margin-right: 8px;
}

/* OPTIONAL HOVER REMOVE */
.coming-soon-section .listing-card:hover {
    transform: none;
}

/* INFO BAR */
.coming-soon-note {
    text-align: center;
    margin-top: 25px;
}

.coming-soon-note span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 14px 22px;
    border-radius: 10px;
    color: #666;
    font-size: 14px;
}

/* ===============================
   LARGE TABLETS (≤1200px)
================================= */
@media (max-width: 1200px) {

    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .listing-content h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .listing-meta p,
    .listing-meta p span {
        font-size: 16px;
        line-height: 26px;
    }
}

/* ===============================
   TABLETS (≤992px)
================================= */
@media (max-width: 992px) {

    .featured-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .featured-title #filterToggle {
        width: 100%;
        text-align: center;
    }

    .filter-dropdown {
        right: auto;
        left: 0;
        width: 100%;
    }

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

    .listing-content {
        padding: 16px;
    }
}

/* ===============================
   MOBILE (≤576px)
================================= */
@media (max-width: 768px){
    .featured-header h2 {
    font-size: 38px;
}
}
@media (max-width: 600px) {

    .featured-section {
        padding: 50px 0;
    }

    .featured-header h2 {
        font-size: 30px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .listing-image {
        height: 160px;
    }

    .listing-content h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .listing-meta p,
    .listing-meta p span {
        font-size: 14px;
        line-height: 22px;
    }

    .btn-primary {
        padding: 12px;
    }

    .featured-footer a {
        width: 100%;
        padding: 14px;
    }
}


/* Auction Section */
.auction-section {
    padding: 55px 0;
    background: #F5F5F5;
}
.auction-wrapper {
    display: flex;
    gap: 50px;
}

.auction-section h2.section-title {
    font-family:  var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 46.74px;
    color: var(--text-dark);
    margin-bottom: 3.5rem;

}

/* LEFT */
.auction-tabs {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 60px 0 0 !important;
}

.tab-item {
    padding: 25px;
    border-radius: 16px;
    background: #FFFFFF;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tab-item span {
    min-width: 56px;
    height: 56px;
    background: #ffffff;
    box-shadow: 0px 1.17px 2.34px 0px #0000000D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.tab-item.active h3, .tab-item.active p {
    color: #fff;
}

.tab-item h3{
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    line-height: 28.04px;
    color: var(--text-dark);
    margin: 0;
}

.tab-item p{
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 23.37px;
    color: #3E4945;
}
.tab-item.active {
    background: #18804D;
    color: #fff;
}

/* RIGHT */
.auction-display {
    position: relative;
    width: 50%;
    background: #E5E5E5;
    border-radius: 40px;
    padding: 50px 0px !important;
}

/* CARD */
.bid-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    display: grid;
    gap: 20px;
    width: 70%;
    margin: 0 auto;
}
.bid-card h3 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: rgba(24, 28, 27, 1);
}
.swiper.auction-slider {
    height: 100%;
}
.bid-row {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 28.04px;
}

.bid-row:not(.active) span, .bid-row:not(.active) strong{
    color: #181C1B;
    opacity: 0.6;
}

/* HIGHEST BID */
.bid-row.active {
    background: #e6f4ea;
    border-left: 4px solid #1e7f4c;
}

/* PROGRESS */
.auction-display .progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: #1e7f4c;
    border-radius: 10px;
}

/* BUTTON */
.bid-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
    color: #fff;
    text-align: center;
}
.bid-row.active span, .bid-row.active strong {
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    line-height: 23.37px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #181C1B;
}
.bid-row span {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 23.37px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #181C1B;
}
.bid-row strong {
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 23.37px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #181C1B;
}
.auction-display .swiper-button-prev, .auction-display .swiper-button-next {
    border: 1px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
}
.auction-display .swiper-button-prev::after, .auction-display .swiper-button-next::after {
    font-size: 15px;
    color: var(--primary-green);
    font-weight: 900;
}

/* ===============================
   LARGE TABLETS (≤1200px)
================================= */
@media (max-width: 1200px) {

    .auction-wrapper {
        gap: 30px;
    }

    .auction-tabs {
        padding-right: 20px !important;
        gap: 25px;
    }

    .bid-card {
        width: 85%;
    }
}
@media (max-width: 1024px) {
    .auction-display .swiper-button-next, .auction-display .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,60%);
}   
}
/* ===============================
   TABLETS (≤992px)
================================= */
@media (max-width: 992px) {

    .auction-wrapper {
        flex-direction: column;
    }

    .auction-tabs,
    .auction-display {
        width: 100%;
    }

    .auction-tabs {
        padding-right: 0 !important;
    }

    .tab-item {
        padding: 20px;
    }

    .tab-item h3 {
        font-size: 18px;
    }

    .tab-item p {
        font-size: 14px;
        line-height: 20px;
    }

    .auction-display {
        padding: 30px 0 !important;
    }

    .bid-card {
        width: 90%;
        padding: 20px;
    }

    /* Move arrows below card */
    .auction-display .swiper-button-prev,
    .auction-display .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

/* ===============================
   MOBILE (≤576px)
================================= */
@media (max-width: 768px){
    .auction-section h2.section-title {
        font-size: 38px;
        line-height: 32px;
    }
}

    .auction-section {
        padding: 40px 0;
    }

    .auction-section h2.section-title {
        font-size: 30px;
        line-height: 32px;
    }

    .tab-item {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .tab-item span {
        min-width: 45px;
        height: 45px;
    }

    .tab-item h3 {
        font-size: 16px;
    }

    .tab-item p {
        font-size: 13px;
        line-height: 18px;
    }

    .auction-display {
        border-radius: 25px;
        padding: 25px 0 !important;
    }

    .bid-card {
        width: 95%;
        padding: 18px;
        gap: 15px;
    }

    .bid-row {
        font-size: 14px;
    }

    .bid-btn {
        padding: 12px;
        font-size: 14px;
    }

    /* Arrows smaller + reposition */
    .auction-display .swiper-button-prev,
    .auction-display .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .auction-display .swiper-button-prev::after,
    .auction-display .swiper-button-next::after {
        font-size: 16px;
    }
}

/* =================================
   AUCTION COMING SOON
================================= */

.auction-coming-soon {
    position: relative;
}

/* HEADING */
.auction-heading-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 3.5rem;
}

.auction-heading-wrap .section-title {
    margin-bottom: 0 !important;
}

.coming-soon-badge {
    background: #e5e5e5;
    color: #555;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* TABS */
.tab-content-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tab-content-wrap small {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.tab-content-wrap small i {
    margin-right: 6px;
}

/* DISABLE CLICKS */
.auction-coming-soon .tab-item,
.auction-coming-soon .swiper-button-prev,
.auction-coming-soon .swiper-button-next,
.auction-coming-soon .bid-btn {
    pointer-events: none;
    cursor: not-allowed;
}

/* KEEP STATIC */
.auction-coming-soon .tab-item:not(.active) {
    opacity: 0.85;
}

/* CARD HEADER */
.bid-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-coming-badge {
    background: #ececec;
    color: #555;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

/* DISABLED BUTTON */
.disabled-bid-btn {
    background: #e5e5e5 !important;
    color: #555 !important;
    border: none;
}

.disabled-bid-btn i {
    margin-right: 8px;
}

/* DIM WHOLE DISPLAY */
.auction-coming-soon .auction-display {
    opacity: 0.88;
}

/* REMOVE HOVER FEEL */
.auction-coming-soon .tab-item {
    transition: none;
}

/* BOTTOM NOTE */
.auction-coming-note {
    text-align: center;
    margin-top: 35px;
}

.auction-coming-note span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ececec;
    padding: 14px 22px;
    border-radius: 10px;
    color: #555;
    font-size: 14px;
}



/* TRUSTED SECTION */
.trusted-section {
    padding: 80px 0;
    background: #ffffff;
}

.trusted-section .trusted-card{

min-height: 303px;
}


.trusted-section .section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    line-height: 100%;
}

/* GRID */
.trusted-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.trusted-card {
    background: #e9e9e9;
    padding: 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* ACTIVE CARD */
.trusted-card:hover, .trusted-card.active {
    background: var(--secondary-green);
    color: #fff;
    opacity: 1;
}

/* STARS */
.stars {
    color: #E09B05;
    font-size: 18px;
    margin-bottom: 15px;
}

/* TEXT */
.review {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 27.91px;
    color: rgba(62, 73, 69, 1);
    font-style: italic;
    min-height: 83px;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.user h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18.61px;
    line-height: 27.91px;
    color: rgba(24, 28, 27, 1);
}

.user span {
    color: #3E4945;
    opacity: 0.8;
    font-family: Inter;
    font-weight: 400;
    font-size: 13.95px;
    line-height: 18.61px;
    letter-spacing: 0px;

}

@media (max-width: 992px) {
    .trusted-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
     .trusted-section .section-title {
        font-size: 38px;
    }
}
@media (max-width: 600px) {
    .trusted-wrapper {
        grid-template-columns: 1fr;
    }

    .trusted-section {
        padding: 50px 0;
    }

    .trusted-section .section-title {
        font-size: 30px;
    }
}

.trusted-card:hover .review, .trusted-card:hover .user h4, .trusted-card:hover .user span, .trusted-card.active .review, .trusted-card.active .user h4, .trusted-card.active .user span {
    color: #fff;
}



/* Recognition Section */
.recognition-section {
    padding: 80px 0;
    background: #F4F4F4;
}
.recognition-content, .recognition-badges {
    width: 50%;
}
/* MAIN BOX */
.recognition-box {
    border-radius: 14px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle background circle */
.recognition-box::after {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    width: 200px;
    height: 200px;
    transform: translateY(-50%);
    z-index: -1;
    opacity: 0.15;

    background-image: url("data:image/svg+xml,%3Csvg width='330' height='432' viewBox='0 0 330 432' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M117.047 240.686L135.094 182.057L87.6562 144H146.438L165 86.4L183.562 144H242.344L194.391 182.057L212.438 240.686L165 204.171L117.047 240.686ZM41.25 432V273.086C28.1875 258.686 18.0469 242.229 10.8281 223.714C3.60938 205.2 0 185.486 0 164.571C0 118.629 15.9844 79.7143 47.9531 47.8286C79.9219 15.9429 118.938 0 165 0C211.062 0 250.078 15.9429 282.047 47.8286C314.016 79.7143 330 118.629 330 164.571C330 185.486 326.391 205.2 319.172 223.714C311.953 242.229 301.812 258.686 288.75 273.086V432L165 390.857L41.25 432Z' fill='%23777777' fill-opacity='0.08'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-size: contain;
}
img.recog-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 330px;
    object-fit: contain;
}
/* LEFT */
.recognition-content h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 59.64px;
    color: rgba(24, 28, 27, 1);
}

.recognition-content p {
    max-width: 709px;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 22px;
    line-height: 35.79px;
    color: #3E4945;
}

/* RIGHT */
.recognition-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    z-index: 1;
    justify-content: center;
}

/* BADGE */
.badge-item {
    text-align: center;
}

/* ICON CIRCLE */
.badge-icon {
    width: 154px;
    height: 154px;
    border-radius: 50%;
    border: 4px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* ACTIVE */
.badge-item.active .badge-icon {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.badge-item.active svg path {
    fill: #fff;
    stroke: #fff;
}

/* LABEL */
.badge-item p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    line-height: 29.82px;
    text-align: center;
    color: #181C1B;
}

.badge-icon svg path {
    fill: var(--primary-green);
}

.badge-item.active p{
    color: var(--primary-green);
}

/* HOVER EFFECT */
.badge-item:hover .badge-icon {
    transform: scale(1.08);
}
@media (max-width:1440px){
    .badge-icon {
    width: 120px;
    height: 120px;
}
.recognition-badges {
    gap: 25px;
}
img.recog-back {
    width: 210px;
}
}
@media (max-width:1024px){
    .recognition-badges {
    justify-content: center;
    }
    .badge-item p {
        font-size: 14px;;
    }
    .badge-icon {
    width: 100px;
    height: 100px;
}
}
@media (max-width: 992px) {
    .recognition-box {
        flex-direction: column;
        text-align: center;
    }

    .recognition-content p {
        max-width: 100%;
    }

    .recognition-badges {
        justify-content: center;
    }
    .recognition-content, .recognition-badges {
    width: 100%;
}
}
@media (max-width: 768px){
    .recognition-content h2 {
        font-size: 38px;
    }
}
@media (max-width: 600px) {
    .recognition-box {
        padding: 30px 20px;
    }

    .recognition-content h2 {
        font-size: 30px;
    }
    .badge-icon {
        width: 90px;
        height: 90px;
    }
    .recognition-badges{
        gap: 12px;
    }
    .recognition-badges {
        justify-content: space-between;
    }
}
@media (max-width:500px){
    .badge-item p {
    font-size: 9px;
}
}
@media (max-width: 375px) {
    .badge-icon {
        width: 70px;
        height: 70px;
    }
}
/* Insights Section */
.insights-section {
    padding: 80px 0;
    background: #ffffff;
}

.insights-section h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 46.38px;
    color: #181C1B;
    margin-bottom: 50px;
}

/* GRID */
.insights-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* CARD */
.insight-card {
    cursor: pointer;
}

/* IMAGE */
.insight-image {
    border-radius: 16px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER ZOOM */
.insight-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.insight-content {
    margin-top: 15px;
}

.category {
font-family: var(--font-body);
font-weight: 600;
font-size: 17px;
line-height: 18.55px;
letter-spacing: 1.39px;
text-transform: uppercase;
color:#8E8E8E;
}

.insight-content h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 33px;
    color: #181C1B;
}

@media (max-width: 992px) {
    .insights-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .insights-section h2 {
        font-size: 38px;
    }
}
@media (max-width: 600px) {
    .insights-wrapper {
        grid-template-columns: 1fr;
    }
    .insights-section h2 {
        font-size: 30px;
    }
    .section-title {
        font-size: 28px;
    }

}

/* ROADMAP SECTION */
.roadmap-section {
    padding: 80px 0;
    background: #FFFFFF;
}

/* MAIN GREEN BOX */
.roadmap-box {
    background: #238046;
    border-radius: 20px;
    padding: 60px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* SUBTLE BACKGROUND PATTERN */
.roadmap-box::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    background: url("/website/images/roadmap-bg.svg") no-repeat center;
    background-size: cover;
    width: 453px;
    height: 434px;
    z-index: -1;
}
.roadmap-box::after {
    content: "";
    position: absolute;
    bottom: 0%;
    right: 0%;
    background: url("/website/images/roadmap-down-bg.svg") no-repeat center;
    background-size: cover;
    width: 664px;
    height: 636px;
    z-index: -1;
}
/* HEADER */
.roadmap-header {
    text-align: center;
    margin-bottom: 40px;
}

.roadmap-header h2 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    text-align: center;
    color: var(--text-light);
}

.roadmap-header p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--text-light);
}

/* CARDS WRAPPER */
.roadmap-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
}

/* CARD */
.roadmap-card {
    background: #fff;
    color: #222;
    border-radius: 14px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
}

/* HOVER */
.roadmap-card:hover {
    transform: translateY(-6px);
}

/* TITLE */
.roadmap-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #181C1B;
    margin-bottom: 1.5rem;
}

/* TEXT */
.roadmap-card p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: #272727;
    margin-bottom: 2.5rem;
}

/* TAGS */
.roadmap-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.road_tool {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border: 1px solid #238046;
    border-radius: 6px;
    background: #f9f9f9;
    cursor: default;
    transition: all 0.2s ease;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
}
/* it is hidden untill tooltip functionality is created */
/* .road_tool svg {
    display: none;
} */
@media (max-width: 992px) {
    .roadmap-cards {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .roadmap-header h2 {
        font-size: 38px;
        line-height: 36px;
    }
}
@media (max-width: 600px) {
    .roadmap-cards {
        grid-template-columns: 1fr;
    }

    .roadmap-header h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .roadmap-box {
        padding: 40px 20px;
    }
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 100px;
    line-height: 98px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.cta-box p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 20px;
    line-height: 42.02px;
    text-align: center;
    color: #3E4945;
    margin-bottom: 3rem;
}

/* BUTTON WRAPPER */
.cta-buttons {
    display: inline-grid;
    justify-content: center;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

/* PRIMARY BUTTON */
.cta-section .btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 20px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    justify-content: center;
}

/* OUTLINE BUTTON */
.btn-outline {
    border: 1px solid var(--secondary-green);
    color: var(--secondary-green);
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    justify-content: center;
}

/* HOVER EFFECTS */
.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cta-section .btn-outline:hover {
    color: var(--secondary-green);
}

/* ARROW ANIMATION */
.cta-buttons span {
    transition: transform 0.3s ease;
}

.btn-primary:hover span,
.btn-outline:hover span {
    transform: translateX(4px);
}

@media (max-width: 768px) {
.cta-box h2 {
    font-size: 65px;
    line-height: 70px;
}

    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {

    .cta-box h2 {
    font-size: 45px;
    line-height: 45px;
}
.cta-box p {
    line-height: 25.02px;
}
.cta-buttons {
    width: 100%;
}
.cta-section .btn-primary {
    gap: 2px;
    padding: 12px 8px;
}
.btn-outline {
    padding: 12px 8px;
    gap: 2px;
}
}

/* Verification Section */
.verification-section {
    padding: 80px 0;
    background: #f4f4f4;
    text-align: center;
}

/* HEADER */
.verification-header h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.verification-header p {
    max-width: 546px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #3E4945;
    margin-bottom: 80px;
}

/* STEPS WRAPPER */
.verification-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.step-item {
    box-shadow: 3px 3px 4px 0px #00000014;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 50px;
    position:relative;
    width: 25%;
}
.step-arrow {
    position: absolute;
    right: -35px;
    top: 50%;
    bottom: 50%;
    margin: auto;
    z-index: 1;
}
/* STEP */
.red-verify {
    background: #FF00000A;
    color: #FF0000;
}
span.gray-verify {
    background: #0000000F;
    color: #000000;
}

span.green-verify {
    background: #0CB32B1A;
    color: #76CB19;
}

span.blue-verify {
    background: #2E86C11A;
    color: #2E86C1;
}
.red-verify, .gray-verify, .green-verify, .blue-verify {
    padding: 0.5rem 2rem;
    border-radius: 6px;
    font-family: Inter;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
}
.step-icon.red {
    background: #FF00001A;
}
.step-icon.gray {
    background: #0000001A;
}
.step-icon.green {
    background: #76CB191A;
}
.step-icon.blue {
    background: #1B4F721A;
}
/* ICON */
.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 30px;
    background: #FF00001A;
}

/* COLORS */
.divider.red { background: #e74c3c;     margin-bottom: 30px;}
.divider.black { background: #000000;     margin-bottom: 30px;}
.divider.green { background: var(--primary-green);    margin-bottom: 30px; }
.divider.blue { background: #2e86c1;    margin-bottom: 30px; }

/* TITLE */
.step-item h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 28px;
    line-height: 30px;
    text-align: center;
    color: #181C1B;
    margin-bottom: 30px;
    min-height: 60px;
}

/* DIVIDER */
.divider {
    display: block;
    width: 30px;
    height: 2px;
    /* background: #ddd; */
    margin: 8px auto;
}

/* TEXT */
.step-item p {
    font-size: 16px;
    color: #555555;
    min-height: 50px;
}

/* ARROWS */
.step-arrow {
    font-size: 22px;
    font-weight: bold;
}

.step-arrow.red {
    color: #ffffff;
    width: 60px;
    height: 60px;
    background: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.step-arrow.black {
    color: #ffffff;
    width: 60px;
    height: 60px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.step-arrow.green {
    color: #ffffff;
    width: 60px;
    height: 60px;
    background: #76CB19;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* CTA */
.verification-cta {
    margin-top: 40px;
}

.verification-section .btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 20px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
}

.btn-primary:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
.verification-steps {
    flex-direction:column;
    width: 80%;
    margin: 0 auto;
}
.verification-steps > * {
    width: calc(50% - 10px);
}

    .step-arrow {
    position: absolute;
    right: 0;
    top: 95%;
    bottom: 0;
    margin: 0 auto;
    z-index: 1;
    left: 0;
    transform: rotate(90deg);
}
}

@media (max-width: 768px){
    .verification-steps > * {
    width: 100%;
}
.verification-header h2{
    font-size: 38px;
}
}

@media (max-width: 600px){
    .verification-steps {
    width: 100%;
    margin: 0 auto;
}
.verification-header h2{
    font-size: 30px;
}
.btn-primary, .btn-outline, .verification-section .btn-primary {
    font-size: 14px;
}
.step-item h4 {
    font-size: 24px;
}
}

/* NAVBAR */
.nav-menu ul.dropdown-menu {
    list-style: none;
    display: block;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a,.nav-menu ul li form button.logout-btn{
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Dropdown Parent */
.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dropdown Box */
#nav-menu .dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    /* min-width: 240px; */
    background: #fff;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    border-left: 3px solid #00a651;
}

/* Show Dropdown */
#nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
        visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-menu li {
    width: 100%;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    transition: all 0.25s ease;
}

/* Hover Effect */
.dropdown-menu li a:hover {
    background: #f5f7ff;
    color: #00a651;
    padding-left: 28px;
}



/* Disclaimer Modal */.disclaimer-modal {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.55);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    z-index: 9999;
}

.disclaimer-modal.active {
    opacity: 1;
    visibility: visible;
}

.disclaimer-box {
    background: #fff;

    max-width: 500px;
    width: 90%;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    transform: translateY(20px);

    transition: 0.3s ease;
}

.disclaimer-modal.active .disclaimer-box {
    transform: translateY(0);
}

.disclaimer-box h3 {
    margin-bottom: 15px;
    font-size: 28px;
}

.disclaimer-box p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.disclaimer-box button {
    background: #006D5B;
    color: #fff;

    border: none;

    padding: 14px 28px;

    border-radius: 10px;

    cursor: pointer;
}
.footer-bottom-right, .footer-bottom-left {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width:768px){
  #nav-menu .dropdown-menu {
    min-width: 100%;
}
}




.tooltip-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.tooltip-text {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    max-width: 280px;
    background: #398d59;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
}

/* Tooltip Arrow */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #398d59 transparent transparent transparent;
}

/* Show tooltip on hover */
.tooltip-icon:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    bottom: 150%;
}