
.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.integration-card {
    cursor: pointer;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    background-color: white;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.card-img-top {
    height: 160px;
    object-fit: cover;
}

.card-text{
    color: gray;
    font-size:14px;
}

.integration-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid white;
    background-color: white;
    position: absolute;
    top: 125px;
    right: 20px;
    object-fit: contain;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 20px;
    padding-top: 45px;
}

/* Add this new class for the footer area */
.card-footer {
    padding: 12px 20px;
    border-top: 1px solid #eaeaea;
    margin-top: auto;
}

/* Update card footer to include flex layout for positioning items */
.card-footer {
    padding: 12px 20px;
    border-top: 1px solid #eaeaea;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Style for the rating container */
.rating-container {
    color: #777;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.rating-container .fa-star {
    color: #f39c12;
    margin-right: 4px;
}

.rating-score {
    font-weight: 500;
    margin-right: 5px;
}

.rating-count {
    color: #999;
    font-size: 0.8rem;
    margin-right: 4px;
}    

.sponsored-tag {
    font-size: 0.75rem;
    color: #777;
    display: flex;
    align-items: center;
}

.sponsored-tag i {
    margin-right: 6px;
    color: var(--text-color);
}

/* Optional: You can add a subtle background to make the tag stand out more */
.sponsored-tag {
    padding: 2px 6px;
    border-radius: 4px;
    background-color: #f8f8f8;
}

.stars {
    color: #f39c12;
}

.hero-section {
    background: linear-gradient(rgb(15 23 43), rgb(43 15 43)), url('https://placehold.co/200x100/FFFFFF/000000?text=?') center / cover no-repeat;
    color: white;
    padding: 80px 0;
    text-align: center;
}


/* Tooltip icon styling */
.tooltip-icon {
    cursor: help;
    color: #777;
}

.sidebar {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: sticky;
    top: 20px;
}

.sidebar-header {
    padding: 15px 20px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-body {
    padding: 15px 20px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-title {
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.filter-title i {
    margin-left: 8px;
    color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    cursor: pointer;
}

.sort-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    font-size: 0.9rem;
}

.section-title {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    right: 0;
}

.content-section {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

.tooltip-icon {
    cursor: help;
    color: #777;
    margin-right: 5px;
}

.mobile-search-container {
    display: none;
}

.mobile-filter-popup {
    display: none;
}