/* --- Marketplace Hero --- */
.marketplace-hero {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.community-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-join {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s;
}

.btn-join:hover { transform: scale(1.05); }

.hero-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn-explore {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

/* --- Marketplace About & Floating Objects --- */
.marketplace-about {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.marketplace-about h6 {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.marketplace-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a2e44;
}

.marketplace-about p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #444;
}

.floating-obj {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 150px;
}

.obj-left { top: 10%; left: 5%; }
.obj-right { bottom: 10%; right: 5%; width: 100px; }

/* --- Grid and Cards --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.market-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.market-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Badge and Pill Button Style */
.badge, .btn-card {
    background-color: #1a2e44;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    text-decoration: none;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
}

.btn-card {
    margin-top: 20px;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.btn-card:hover {
    background-color: #314d6b;
}

.market-img img { 
    width: 100%; 
    max-width: 200px; 
    margin-bottom: 20px; 
}

/* --- JS Animation States --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 20px;
    flex-wrap: wrap;
}

.details-content, .details-image-wrap { flex: 1; min-width: 300px; }

.benefit-list { list-style: none; padding: 0; margin: 30px 0; }

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    background: #1a2e44;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.feature-img { width: 100%; height: auto; border-radius: 20px; }

.cta-wrap { text-align: center; margin-top: 30px; }

.sub-text { font-size: 14px; color: #777; margin-top: 10px; }

/* Replacing the 'hub_fancy_heading' scale theme with clean CSS */
.benefit-list li:hover .check-icon {
    transform: scale(1.2);
    background-color: #007bff; /* Changes color on hover for feedback */
}

.check-icon {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.benefit-text h3 {
    font-size: 1.1rem;
    color: #1a2e44;
    margin: 0 0 5px 0;
    font-weight: bold;
}

.benefit-text p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Add this to handle the image-on-left layout */
.reverse-flex .flex-container {
    flex-direction: row-reverse;
}

/* Ensure mobile responsiveness handles the flip correctly */
@media (max-width: 768px) {
    .reverse-flex .flex-container {
        flex-direction: column-reverse;
    }
}
.features-grid-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-svg {
    max-width: 100%;
    height: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.feature-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    margin-bottom: 20px;
    height: 42px;
}

.feature-text h3 {
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px 0;
}

.feature-text p {
    font-size: 16px;
    color: #8E8E98;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}



/* Container and Background */
.marketplace-wrap {
    background-color: #032a3e;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.marketplace-inner {
    position: relative;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.marketplace-body {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Asset Positioning */
.abs-asset {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.abs-path {
    top: -40px;
    left: 5%;
    width: 200px;
    opacity: 0.7;
}

.abs-rocket {
    bottom: -20px;
    right: 5%;
    width: 100px;
}

/* Typography and UI */
.title { font-size: 32px; font-weight: 700; color: #ffffff; /* pure white */
 ; margin-bottom: 15px; }
.line-divider { width: 60px; height: 2px; background: #F6C302; margin: 0 auto 25px; }
.desc { font-size: 18px; color: #ffffff; line-height: 1.6; margin-bottom: 40px; }

.btn-solid {
    display: inline-block;
    padding: 16px 32px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-solid:hover { background: #333; }

/* Responsive: Replicating WordPress elementor-hidden classes */
@media (max-width: 1024px) {
    .abs-asset {
        display: none;
    }
}




.footer-widget {
  

  padding: 20px;
  width: 250px;
  font-family: Arial, sans-serif;
  border-radius: 8px;
  margin-left: 90px;
  
}

.widget-title {
    white-space: nowrap; 
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: 0.5px;
}

.widget-list {
    list-style: disc;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 12px;
}

.widget-list a {
    text-decoration: none;
    color: #0b3d91;
    font-size: 15px;
    transition: color 0.3s ease;
}

.widget-list a:hover {
    color: #000;
}


.features-header-text {
    text-align: center;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif; /* Or your site's main font */
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0f172a; /* Deep navy */
    margin-bottom: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.accent {
    color: #facc15; /* Vibrant yellow/gold */
    text-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}

.sub-title {
    font-size: 1.5rem;
    color: #64748b; /* Professional slate gray */
    margin-top: -5px;
    font-weight: 500;
}

.page-container {
    max-width: 1200px;       /* limits width */
    margin: 0 auto;          /* centers the container */
    padding: 0 20px;         /* space from edges on small screens */
    box-sizing: border-box;  /* ensures padding stays inside width */
}


.marketplace-hero,
.marketplace-about,
.marketplaces-list,
.details-section,
.features-grid-section {
    background-color: #fff;       /* white box */
    border-radius: 12px;          /* rounded corners for neat edges */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* subtle shadow */
    padding: 40px 20px;           /* internal spacing */
    margin-bottom: 40px;          /* space between sections */
}
