.benefits-section {
    padding: 5rem 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Bahnschrift', sans-serif;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-section .section-heading {
    text-align: center;
    font-size: 32px;
    background: linear-gradient(135deg, #00ff66 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    font-family: 'Audiowide', cursive;
    letter-spacing: 1px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.05) 0%, rgba(0, 255, 102, 0.02) 100%);
    border: none;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.3), transparent);
}

.bento-card:hover {
    transform: translateY(-5px);
}

.small-card {
    grid-row: span 1;
    min-height: 300px;
}

.second-row-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    grid-column: 1 / -1;
}

.medium-card {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 300px;
}

.large-card {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 350px;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.card-title {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #00ff66 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Audiowide', cursive;
    letter-spacing: 0.5px;
}

.card-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Bahnschrift', sans-serif;
}

/* Analytics Chart */
.analytics-chart {
    margin-top: auto;
    position: relative;
    height: 100px;
}




/* Wave Chart */
.wave-chart {
    margin-top: auto;
    position: relative;
    height: 150px;
}

.chart-times {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Bahnschrift', sans-serif;
}

/* Team Circle */
.team-circle {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.avatar-group {
    display: flex;
    justify-content: center;
    background: rgba(0, 255, 102, 0.05);
    border: none;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: relative;
}

.avatar {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.avatar:hover {
    transform: scale(1.1);
}

.avatar:nth-child(1) { top: 20%; left: 20%; background-color: #ff6b6b; }
.avatar:nth-child(2) { top: 20%; right: 20%; background-color: #48dbfb; }
.avatar:nth-child(3) { bottom: 20%; left: 20%; background-color: #1dd1a1; }
.avatar:nth-child(4) { bottom: 20%; right: 20%; background-color: #feca57; }
.avatar:nth-child(5) { 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #5f27cd;
    z-index: 2;
}

/* Tech Stack */
.tech-stack {
    margin-top: auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(0, 255, 102, 0.7);
}

.tech-stack i {
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-stack i:hover {
    color: #00ff66;
    transform: translateY(-5px);
}

/* Project Timeline */
.invoice-preview {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.invoice-header {
    background: rgba(0, 255, 102, 0.1);
    padding: 1rem;
    font-size: 1rem;
    color: #00ff66;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Audiowide', cursive;
}

.invoice-list {
    padding: 1rem;
}

.invoice-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.invoice-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.invoice-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-family: 'Bahnschrift', sans-serif;
}

.status {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    font-family: 'Bahnschrift', sans-serif;
}

.invoice-item:nth-child(1) .status { color: #00ff66; }
.invoice-item:nth-child(2) .status { color: #48dbfb; }
.invoice-item:nth-child(3) .status { color: #ff6b6b; }

.invoice-total {
    padding: 1rem;
    font-size: 1.25rem;
    color: #00ff66;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 255, 102, 0.1);
    font-family: 'Audiowide', cursive;
}

@media (max-width: 992px) {
    .benefits-section .section-heading {
        font-size: 2.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 1rem;
    }
    
    .large-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .benefits-section .section-heading {
        font-size: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card {
        padding: 1.5rem;
    }

    .small-card,
    .medium-card,
    .large-card {
        grid-column: span 1;
        min-height: auto;
    }
    
    .card-title {
        font-size: 1.5rem;
    }

    .second-row-cards {
        grid-template-columns: 1fr;
    }
}

.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.card-image-container img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card-image-container img:hover {
  transform: scale(1.1);
}
