/* Ward Bluetooth Features Styles */
.ward-bluetooth-features {
    padding: 80px 0;
    background-color: #fff;
}

.bluetooth-feature-item {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bluetooth-feature-item:last-child {
    margin-bottom: 0;
}

.bluetooth-feature-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.bluetooth-feature-item .feature-icon {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bluetooth-feature-item .feature-icon img {
    height: auto;
}

.bluetooth-feature-item .feature-content {
    flex: 1;
}

.bluetooth-feature-item .feature-content h4,
.bluetooth-feature-title {  
    color: #00C08B;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    line-height: 27px;
    word-wrap: break-word;
    margin: 0 0 8px 0;
}

.bluetooth-feature-item .feature-content p,
.bluetooth-feature-description {
    color: #515353;
    font-size: 18px;
    font-family: Inter;
    font-weight: 400;
    line-height: 27px;
    word-wrap: break-word;
    margin: 0;
}

.bluetooth-feature-item .feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bluetooth-feature-item .feature-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.bluetooth-feature-item .feature-bullets li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #00C08B;
    font-weight: bold;
}

.bluetooth-content .row {
    display: flex;
    align-items: stretch;
    position: relative;
}

.bluetooth-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bluetooth-play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.bluetooth-content .col-md-6 {
    display: flex;
    flex-direction: column;
}

.bluetooth-features-list,
.application-areas {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.application-areas {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.applications-title {
    color: #111928;
    font-size: 29px;
    font-family: Inter;
    font-weight: 700;
    line-height: 43.50px;
    word-wrap: break-word;
    text-align: center;
    margin-bottom: 40px;
}

.applications-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.app-card {
    flex: 1;
    text-align: center;
    padding: 20px;
    /* background: white; */
    /* border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    /* transition: all 0.3s ease; */
}



.app-card .app-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-card .app-icon img {
    max-width: 100%;
    height: auto;
}

.app-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111928;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.app-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .bluetooth-content .row {
        flex-direction: column;
    }
    
    .bluetooth-content .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: none;
    }
    
    .bluetooth-play-icon {
        display: none;
    }
    
    .application-areas {
        margin-top: 30px;
        width: 100%;
    }
    
    .bluetooth-features-list {
        width: 100%;
    }
    
    .bluetooth-feature-item .feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .bluetooth-feature-item .feature-icon img {
        width: 90px;
        height: 72px;
    }
}

@media (max-width: 1024px) {
    .ward-bluetooth-features {
        padding: 60px 0;
    }
    
    .bluetooth-feature-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .bluetooth-feature-item .feature-icon {
        margin: 0 auto 15px;
        width: 80px;
        height: 80px;
    }
    
    .bluetooth-feature-item .feature-icon img {
        width: 80px;
        height: 64px;
    }
    
    .bluetooth-feature-title {
        font-size: 16px;
        line-height: 24px;
    }
    
    .bluetooth-feature-description {
        font-size: 14px;
        line-height: 21px;
    }
    
    .app-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .app-card {
        padding: 15px;
    }
    
    .app-card .app-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }
    
    .app-card .app-icon img {
        width: 60px;
        height: 60px;
    }
    
    .app-card h4 {
        font-size: 14px;
        margin: 0 0 8px 0;
    }
    
    .app-card p {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .application-areas {
        padding: 30px 20px;
    }
    
    .applications-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .applications-grid {
        gap: 20px;
    }
    
    .bluetooth-content {
        margin-top: 40px !important;
    }
}

@media (max-width: 768px) {
    .ward-bluetooth-features {
        padding: 60px 0;
    }
    
    .bluetooth-feature-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .bluetooth-feature-item .feature-icon {
        margin: 0 auto 15px;
        width: 80px;
        height: 80px;
    }
    
    .bluetooth-feature-item .feature-icon img {
        width: 80px;
        height: 64px;
    }
    
    .bluetooth-feature-title {
        font-size: 16px;
        line-height: 24px;
    }
    
    .bluetooth-feature-description {
        font-size: 14px;
        line-height: 21px;
    }
    
    .app-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .app-card {
        padding: 15px;
    }
    
    .app-card .app-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }
    
    .app-card .app-icon img {
        width: 60px;
        height: 60px;
    }
    
    .app-card h4 {
        font-size: 14px;
        margin: 0 0 8px 0;
    }
    
    .app-card p {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .application-areas {
        padding: 30px 20px;
    }
    
    .applications-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .applications-grid {
        gap: 20px;
    }
    
    .bluetooth-content {
        margin-top: 40px !important;
    }
}

@media (max-width: 480px) {
    .ward-bluetooth-features {
        padding: 40px 0;
    }
    
    .bluetooth-feature-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .bluetooth-feature-item .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .bluetooth-feature-item .feature-icon img {
        width: 60px;
        height: 48px;
    }
    
    .bluetooth-feature-title {
        font-size: 14px;
        line-height: 20px;
    }
    
    .bluetooth-feature-description {
        font-size: 12px;
        line-height: 18px;
    }
    
    .application-areas {
        padding: 20px 15px;
    }
    
    .applications-title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    
    .app-card {
        padding: 12px;
    }
    
    .app-card .app-icon {
        width: 50px;
        height: 50px;
    }
    
    .app-card .app-icon img {
        width: 50px;
        height: 50px;
    }
    
    .app-card h4 {
        font-size: 12px;
    }
    
    .app-card p {
        font-size: 11px;
    }
    
    .bluetooth-content {
        margin-top: 30px !important;
    }
    
    .bluetooth-play-icon {
        width: 30px;
        height: 30px;
        margin: 15px auto;
    }
}
