.find-section {
    background-image: linear-gradient(hsla(0, 0%, 20%, 0.9), hsla(60, 5%, 96%, 0.7)), url('../images/checker.png');
    background-size: cover;
    background-position: bottom;
}


/* Airdrop cards */
.strategy-list {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.strategy-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.strategy-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.strategy-item:last-child {
    border-bottom: none;
}

.strategy-icon {
    object-fit: contain;
    vertical-align: middle;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.strategy-column {
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
}

.strategy-column:first-child {
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.strategy-column:last-child::after {
    content: " funding";
    font-size: 0.9em;
    color: #6c757d;
}

.strategy-item .badge {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}


.strategy-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
    position: relative;
}

.strategy-item-link:hover {
    background-color: #f5f5f5;
    text-decoration: none;
    color: inherit;
}

.strategy-item {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.strategy-item:last-child {
    border-bottom: none;
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5);
}

.stats-cards .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.8;
}

.stats-cards .card-text {
    font-size: .9rem;
    font-weight: bold;
    color: var(--text-color);
    opacity: 0.7;
}

.feature-cards .card-title {
    font-weight: bold;
    opacity: 0.7;
}

.free-plan-ad-link-container {
    position: absolute;
    bottom: 53px;
    width: fit-content;
    min-width: 400px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-container {
    transition: all 0.3s ease-in-out;
}

.hidden-testimonial {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.hidden-testimonial:not(.d-none) {
    opacity: 1;
}

#showMoreTestimonials {
    transition: all 0.3s ease;
}

#showMoreTestimonials:hover {
    transform: translateY(-2px);
}

/* Add these styles at the end of the file */

.dots-line-desktop {
    position: absolute;
    inset-x: 0;
    top: 8px;
    display: none;
}

.dots-line-mobile {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% - 64px);
}

@media (min-width: 768px) {
    .dots-line-desktop {
        display: block;
    }
    .dots-line-mobile {
        display: none;
    }
}

.back-blur-1 {
    backdrop-filter: blur(2px);
}

.how-it-works-icon {
    width: 4rem;
    height: 4rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -8px auto 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.how-it-works-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}
.fa-gradient {
	background: -webkit-gradient(linear, left top, left bottom, from(#7e22ce), to(#be185d));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

nav.navbar {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(10px);
}